()
| 110 | } |
| 111 | |
| 112 | private openCupboard(): void{ |
| 113 | // If the cupboard isn't opened yet |
| 114 | if(Saving.loadNumber("fourthHouseCupboardStep") == 0){ |
| 115 | // Set the step |
| 116 | Saving.saveNumber("fourthHouseCupboardStep", 1); |
| 117 | // Update |
| 118 | this.update(); |
| 119 | this.getGame().updatePlace(); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | private pickCarpetLollipop(): void{ |
| 124 | // If the lollipop is outside the carpet |
nothing calls this directly
no test coverage detected