From 6c84d64e67082e23cd54d38b757ec6a5f5bd1409 Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Thu, 13 Oct 2022 01:07:10 -0400 Subject: [PATCH] rm unecessary return type --- src/NetscriptFunctions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NetscriptFunctions.ts b/src/NetscriptFunctions.ts index a082cad90..516f57dfd 100644 --- a/src/NetscriptFunctions.ts +++ b/src/NetscriptFunctions.ts @@ -1840,7 +1840,7 @@ const base: InternalAPI = { Object.assign(data.jobs, Player.jobs); return data; }, - getMoneySources: () => (): IMoneySources => ({ + getMoneySources: () => () => ({ sinceInstall: Object.assign({}, Player.moneySourceA), sinceStart: Object.assign({}, Player.moneySourceB), }),