mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-07 22:49:54 +00:00
Record World Turtle kills.
This commit is contained in:
parent
9a590ecc42
commit
56c8838101
@ -593,9 +593,7 @@ EX void applyBoxes() {
|
||||
|
||||
for(int i=0; i<43; i++) {
|
||||
if(loading) kills[i] = 0;
|
||||
bool fake =
|
||||
i == moLesserM || i == moNone || i == moWolfMoved || i == moTentacletail ||
|
||||
i == moIvyNext;
|
||||
bool fake = (i == moREMOVED || i == moLesserM || i == moTentacletail);
|
||||
if(i == moWormtail) applyBoxM(moCrystalSage);
|
||||
else if(i == moWormwait) applyBoxM(moFireFairy);
|
||||
else if(i == moTentacleEscaping) applyBoxM(moMiner);
|
||||
@ -603,6 +601,7 @@ EX void applyBoxes() {
|
||||
else if(i == moTentaclewait) applyBoxOrb(itOrbThorns);
|
||||
else if(i == moGreater) applyBoxOrb(itOrbDragon);
|
||||
else if(i == moGreaterM) applyBoxOrb(itOrbIllusion);
|
||||
else if(i == moWolfMoved) applyBoxM(moWorldTurtle);
|
||||
else applyBoxM(eMonster(i), fake);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user