Merge pull request #361 from jlmjlm/save-wtkill

Record World Turtle kills.
This commit is contained in:
Zeno Rogue 2024-02-22 12:30:13 +01:00 committed by GitHub
commit f87a7c5f1c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 3 deletions

View File

@ -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);
}