1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-11 18:00:34 +00:00

missile life starts at 0

This commit is contained in:
Zeno Rogue 2022-09-17 17:34:11 +02:00
parent 21ebbc6ca4
commit b75bb20246

View File

@ -18,6 +18,7 @@ void fire() {
auto& ro = ci_at[c].rocks;
auto r = std::make_unique<ads_object> (oMissile, c, S1, 0xC0C0FFFF);
r->shape = &shape_missile;
r->life_start = 0;
ads_matrix Scell(Id, 0);
cell *lcell = vctr;