()
| 305 | } |
| 306 | |
| 307 | private throwFirstCandy(): void{ |
| 308 | if(this.getGame().getCandies().getCurrent() >= 1){ |
| 309 | this.getGame().getCandies().add(-1); // We use one candy |
| 310 | this.currentSpeech = "wishingWellCandyIntroductionSpeech"; // Set the speech |
| 311 | Saving.saveBool("wishingWellFirstCandyThrown", true); // Change the bool |
| 312 | this.update(); |
| 313 | this.getGame().updatePlace(); |
| 314 | } |
| 315 | } |
| 316 | |
| 317 | private throwFirstLollipop(): void{ |
| 318 | if(this.getGame().getLollipops().getCurrent() >= 1){ |
nothing calls this directly
no test coverage detected