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:
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user