()
| 157 | } |
| 158 | |
| 159 | private digPond(): void{ |
| 160 | if(this.getGame().getLollipops().getCurrent() >= 100000){ |
| 161 | this.getGame().getLollipops().add(-100000); |
| 162 | Saving.saveBool("lollipopFarmPondDug", true); |
| 163 | this.update(); |
| 164 | this.getGame().updatePlace(); |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | private drawFieldStuff(x: number, y: number): void{ |
| 169 | // A variable useful later |
nothing calls this directly
no test coverage detected