()
| 121 | } |
| 122 | |
| 123 | private okayStopTickling(): void{ |
| 124 | if(this.step == DragonStep.STOP_TICKLING){ |
| 125 | // Change the step |
| 126 | this.step = DragonStep.TALKING; |
| 127 | // Set the bool |
| 128 | Saving.saveBool("dragonDone", true); |
| 129 | // Update |
| 130 | this.update(); |
| 131 | this.getGame().updatePlace(); |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | private update(): void{ |
| 136 | // Erase everything |
nothing calls this directly
no test coverage detected