diff --git a/src/NetscriptFunctions/Corporation.ts b/src/NetscriptFunctions/Corporation.ts index 996d956dc..8655a6c1b 100644 --- a/src/NetscriptFunctions/Corporation.ts +++ b/src/NetscriptFunctions/Corporation.ts @@ -207,7 +207,7 @@ export function NetscriptCorporation(): InternalAPI { function bribe(factionName: string, amountCash: number): boolean { if (!player.factions.includes(factionName)) throw new Error("Invalid faction name"); if (isNaN(amountCash) || amountCash < 0) - throw new Error("Invalid value for amount field! Must be numeric, grater than 0."); + throw new Error("Invalid value for amount field! Must be numeric, greater than 0."); const corporation = getCorporation(); if (corporation.funds < amountCash) return false;