rm unecessary return type

This commit is contained in:
Olivier Gagnon 2022-10-13 01:07:10 -04:00
parent 4c4f050214
commit 6c84d64e67

@ -1840,7 +1840,7 @@ const base: InternalAPI<NS> = {
Object.assign(data.jobs, Player.jobs); Object.assign(data.jobs, Player.jobs);
return data; return data;
}, },
getMoneySources: () => (): IMoneySources => ({ getMoneySources: () => () => ({
sinceInstall: Object.assign({}, Player.moneySourceA), sinceInstall: Object.assign({}, Player.moneySourceA),
sinceStart: Object.assign({}, Player.moneySourceB), sinceStart: Object.assign({}, Player.moneySourceB),
}), }),