()
| 196 | } |
| 197 | |
| 198 | private requestStatusBarUnlocked(): void{ |
| 199 | if(this.getGame().getCandies().getCurrent() >= 30){ |
| 200 | this.getGame().getCandies().transferTo(this.getGame().getCandiesUsedToRequestFeatures(), 30); |
| 201 | Saving.saveBool("statusBarUnlocked", true); |
| 202 | this.getGame().updateStatusBar(true); |
| 203 | this.update(); |
| 204 | this.getGame().updatePlace(); |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | private requestStatusBarUnlockedCfg(): void{ |
| 209 | if(this.getGame().getCandies().getCurrent() >= 5){ |
nothing calls this directly
no test coverage detected