()
| 315 | } |
| 316 | |
| 317 | private throwFirstLollipop(): void{ |
| 318 | if(this.getGame().getLollipops().getCurrent() >= 1){ |
| 319 | this.getGame().getLollipops().add(-1); // We use one lollipop |
| 320 | this.currentSpeech = "wishingWellLollipopIntroductionSpeech"; // Set the speech |
| 321 | Saving.saveBool("wishingWellFirstLollipopThrown", true); // Change the bool |
| 322 | this.update(); |
| 323 | this.getGame().updatePlace(); |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | private throwLollipops(): void{ |
| 328 | // If we have enough lollipops |
nothing calls this directly
no test coverage detected