1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-10-18 06:30:41 +00:00

fixed level initialization

This commit is contained in:
Zeno Rogue 2024-08-20 10:17:50 +02:00
parent 2cff14a23c
commit 495a308993

View File

@ -411,6 +411,8 @@ void level::init() {
start.on_surface = this;
start.sstime = -100;
start.last_tramp = -100;
start.collected_triangles = 0;
start.vel = 0;
current = start;
println(hlog, "start.where = ", start.where);
println(hlog, "current.where = ", current.where, " : ", hr::format("%p", &current));