minor fix

Better to leave off with a commit that at least passes checks ;)
This commit is contained in:
zeddrak 2022-01-28 13:45:12 -08:00 committed by GitHub
parent 3401f7d0d0
commit 744cecb058
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -104,6 +104,7 @@ export function numCycleForGrowthTransition(server: Server, growth: number, p: I
* @param startMoney - How much you are growing the server from, for instance, to grow from 200 to 600, input 200
* @param p - Reference to Player object
* @returns Number of "growth cycles" needed
*/
export function numCycleForGrowthCorrected(server: Server, targetMoney: number, startMoney: number, p: IPlayer, cores = 1): number {
return 0; //left off here.
}