1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-01-02 02:19:02 +00:00

ru:: fixed timed orbs reading

This commit is contained in:
Zeno Rogue
2025-12-21 12:54:37 +01:00
parent df268e6a29
commit 2aa40fe2af

View File

@@ -229,7 +229,7 @@ void load_room(fhstream& f, cell *c) {
r.entities.emplace_back(std::move(b));
}
else if(cap == "TIMEORB") {
auto b = std::make_unique<timed_orb>(); nam(*b);
auto b = std::make_unique<timed_orb>();
b->respawn = get_xy();
b->duration = get_ld() * game_fps;
r.entities.emplace_back(std::move(b));