Fixed up last of the bug fixes, this should be it up until the interactive demo

This commit is contained in:
2019-04-12 04:45:31 -06:00
parent f89c1aa209
commit 8222cdaecb
9 changed files with 95 additions and 70 deletions

View File

@@ -36,10 +36,10 @@ public class StartLogic extends Player {
* sets the player's money, bank, guns, hp, ad cargo space to max values.
*/
public void cheat() {
setMoney(999999999);
setBank(999999999);
setGuns(999);
setHP(99999999);
setCargoSpace(99999999);
setMoney(1000000);
setBank(1000000);
setGuns(1000000);
setHP(1000000);
setCargoSpace(100000000);
}
}