()
| 134 | } |
| 135 | |
| 136 | private takeTalkingCandy(): void{ |
| 137 | // We take the candy |
| 138 | Saving.saveBool("castleTowerTookTalkingCandy", true); |
| 139 | |
| 140 | // We gain the corresponding item |
| 141 | this.getGame().gainItem("gridItemPossessedTalkingCandy") |
| 142 | |
| 143 | // We update |
| 144 | this.update(); |
| 145 | this.getGame().updatePlace(); |
| 146 | } |
| 147 | |
| 148 | private update(): void{ |
| 149 | // Erase everything |
nothing calls this directly
no test coverage detected