()
| 144 | } |
| 145 | |
| 146 | private takeObject(): void{ |
| 147 | // Set the bool |
| 148 | Saving.saveBool("castleRoom2TookObject", true); |
| 149 | |
| 150 | // Take it |
| 151 | this.getGame().gainItem("gridItemPossessedPitchfork"); |
| 152 | |
| 153 | // Re-calc the farm production |
| 154 | this.getGame().calcLollipopFarmProduction(); |
| 155 | |
| 156 | // Update |
| 157 | this.update(); |
| 158 | this.getGame().updatePlace(); |
| 159 | } |
| 160 | } |
nothing calls this directly
no test coverage detected