1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-02 05:20:32 +00:00

save Narcissist and Mirror Spirit kills

This commit is contained in:
Zeno Rogue 2019-04-08 13:51:23 +02:00
parent ccb970f6fe
commit 6b82757016

View File

@ -335,7 +335,7 @@ bool havesave = true;
#if CAP_SAVE #if CAP_SAVE
#define MAXBOX 500 #define MAXBOX 500
#define POSSCORE 369 // update this when new boxes are added! #define POSSCORE 371 // update this when new boxes are added!
struct score { struct score {
string ver; string ver;
@ -753,6 +753,8 @@ void applyBoxes() {
applyBoxOrb(itOrbGravity); applyBoxOrb(itOrbGravity);
list_invorb(); list_invorb();
applyBoxM(moNarciss);
applyBoxM(moMirrorSpirit);
if(POSSCORE != boxid) printf("ERROR: %d boxes\n", boxid); if(POSSCORE != boxid) printf("ERROR: %d boxes\n", boxid);
} }