(x: number, y: number)
| 247 | } |
| 248 | |
| 249 | private drawCauldron(x: number, y: number): void{ |
| 250 | // Draw the cauldron |
| 251 | this.renderArea.drawArray(Database.getAscii("places/cauldron/cauldron"), x, y); |
| 252 | |
| 253 | // Draw the flames |
| 254 | for(var i = 0; i < this.flames.length; i++){ |
| 255 | this.flames[i].draw(this.renderArea, x, y); |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | private getSpecialBoilingText(): string{ |
| 260 | if(this.timerTime < 3) return "... cold."; |