Typo fix in ns.singularity.workForFaction()

Abbreviation of "you are" is "you're".  Also place a full stop at the end to complete the sentence.  Fixes #4118.
This commit is contained in:
Duck McSouls 2022-09-23 20:32:53 +10:00
parent 98d43acf9f
commit 0a644aed58

@ -954,7 +954,7 @@ export function NetscriptSingularity(): InternalAPI<ISingularity> {
// if the player is in a gang and the target faction is any of the gang faction, fail
if (player.inGang() && faction.name === player.getGangFaction().name) {
helpers.log(ctx, () => `You can't work for '${facName}' because youre managing a gang for it`);
helpers.log(ctx, () => `You can't work for '${facName}' because you're managing a gang for it.`);
return false;
}