Spaces:
Running
Running
File size: 409 Bytes
87b3b3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# ice.md
## kedilayanaveen10: You hit a wall, you push through it!
Edit the impassable property of the 'block' object in objects.js to make it passable and reach the exit from above.
```javascript
'block': {
'symbol': '#',
'color': '#999',
'impassable': false
},
```
## pppery: move up on a timer
```
map.startTimer(function(){map.getPlayer().move("up")},200);
```
|