1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-17 06:07:12 +00:00

nilrider:: can now fly off surface

This commit is contained in:
Zeno Rogue
2024-08-18 13:06:04 +02:00
parent 04b8287dbe
commit 448c08e925
3 changed files with 81 additions and 26 deletions

View File

@@ -389,6 +389,8 @@ void level::init() {
start.where = mappt(startx+.5, starty+.5, 1);
start.t = 0;
start.timer = 0;
start.on_surface = this;
start.sstime = -100;
current = start;
println(hlog, "start.where = ", start.where);
println(hlog, "current.where = ", current.where, " : ", hr::format("%p", &current));