()
| 148 | } |
| 149 | |
| 150 | private constructMill(): void{ |
| 151 | if(this.getGame().getLollipops().getCurrent() >= 10000){ |
| 152 | this.getGame().getLollipops().add(-10000); |
| 153 | Saving.saveBool("lollipopFarmMillConstructed", true); |
| 154 | this.update(); |
| 155 | this.getGame().updatePlace(); |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | private digPond(): void{ |
| 160 | if(this.getGame().getLollipops().getCurrent() >= 100000){ |
nothing calls this directly
no test coverage detected