()
| 206 | } |
| 207 | |
| 208 | private requestStatusBarUnlockedCfg(): void{ |
| 209 | if(this.getGame().getCandies().getCurrent() >= 5){ |
| 210 | this.getGame().getCandies().transferTo(this.getGame().getCandiesUsedToRequestFeatures(), 5); |
| 211 | Saving.saveBool("statusBarUnlockedCfg", true); |
| 212 | this.getGame().updateStatusBar(true); |
| 213 | this.update(); |
| 214 | this.getGame().updatePlace(); |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | private requestStatusBarUnlockedHealthBar(): void{ |
| 219 | if(this.getGame().getCandies().getCurrent() >= 5){ |
nothing calls this directly
no test coverage detected