1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-15 11:45:48 +00:00
This commit is contained in:
Zeno Rogue 2024-08-20 14:46:09 +02:00
parent 517e2ee603
commit c890848011

View File

@ -173,7 +173,7 @@ vector<timestamp> level::headings_to_history(manual_replay& r) {
for(auto [qty, h]: r.headings) {
println(hlog, "pair: ", tie(qty, h));
for(int i=0; i<qty; i++) {
if(h.on_surface) cur.heading_angle = int_to_heading(h);
if(cur.on_surface) cur.heading_angle = int_to_heading(h);
history.push_back(cur);
if(!cur.tick(this)) return history;
}