()
| 100 | } |
| 101 | |
| 102 | private goToFarm(): void{ |
| 103 | Saving.saveBool("statusBarUnlockedLollipopFarm", true); // We unlock the farm tab |
| 104 | this.getGame().updateStatusBar(true); // We update the status bar |
| 105 | this.getGame().getStatusBar().selectTabByType(StatusBarTabType.FARM); // We select the farm tab |
| 106 | this.getGame().goToLollipopFarm(); // We show the farm |
| 107 | } |
| 108 | |
| 109 | private goToForest(): void{ |
| 110 | this.getGame().setPlace(new Forest(this.getGame())); |
nothing calls this directly
no test coverage detected