1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-29 08:52:19 +00:00

ru:: fixup to icicle

This commit is contained in:
Zeno Rogue
2025-08-05 12:14:12 +02:00
parent 9713dc2bda
commit ffc32037fd

View File

@@ -234,7 +234,7 @@ void load_room(fhstream& f, cell *c) {
else if(cap == "ICICLE") {
auto b = std::make_unique<icicle>();
sscanf(param.c_str(), "%lf%lf", &b->where.x, &b->where.y);
b->falling = false; b->vel = xy{0,0};
b->state = 0; b->vel = xy{0,0};
b->respawn = b->where; b->postfix();
r.entities.emplace_back(std::move(b));
}