()
| 226 | } |
| 227 | |
| 228 | private requestStatusBarUnlockedMap(): void{ |
| 229 | if(this.getGame().getCandies().getCurrent() >= 10){ |
| 230 | this.getGame().getCandies().transferTo(this.getGame().getCandiesUsedToRequestFeatures(), 10); |
| 231 | Saving.saveBool("statusBarUnlockedMap", true); |
| 232 | this.getGame().updateStatusBar(true); |
| 233 | this.update(); |
| 234 | this.getGame().updatePlace(); |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | private requestStatusBarUnlockedSave(): void{ |
| 239 | if(this.getGame().getCandies().getCurrent() >= 5){ |
nothing calls this directly
no test coverage detected