tortoise flags are now editable with Shift+G and saved into saved levels

This commit is contained in:
Zeno Rogue
2019-02-06 18:48:53 +01:00
parent 78adac4e10
commit 35043b5528
6 changed files with 28 additions and 9 deletions
+1 -1
View File
@@ -3340,7 +3340,7 @@ bool drawMonster(const transmatrix& V, cell *c, const transmatrix*& Vboat, trans
c->stuntime = 1 + (m->stunoff - curtime-1)/300;
if(hasHitpoints(m->type))
c->hitpoints = m->hitpoints;
if(m->type == moTortoise) tortoise::emap[c] = m->torigin;
if(m->type == moTortoise) tortoise::emap[c] = getBits(m->torigin);
drawMonsterType(m->type, c, view, col, m->footphase);
if(m->type == moTortoise) tortoise::emap.erase(c);
break;