()
| 62 | } |
| 63 | |
| 64 | private takeTheBox(): void{ |
| 65 | // Change the bool |
| 66 | Saving.saveBool("lonelyHouseTakeTheBoxDone", true); |
| 67 | |
| 68 | // We update |
| 69 | this.update(); |
| 70 | |
| 71 | // Select the candy box tab |
| 72 | this.getGame().getStatusBar().selectTabByType(StatusBarTabType.CANDY_BOX); |
| 73 | |
| 74 | // Go to the candy box |
| 75 | this.getGame().goToCandyBox(); |
| 76 | } |
| 77 | |
| 78 | private update(): void{ |
| 79 | // Erase everything |
nothing calls this directly
no test coverage detected