From e36246e39241f1c61b5ad506189f99f6f490246d Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 3 Jan 2019 02:14:49 +0100 Subject: [PATCH] saveboxes added --- system.cpp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/system.cpp b/system.cpp index b2d1e481..37ba0964 100644 --- a/system.cpp +++ b/system.cpp @@ -326,7 +326,7 @@ bool havesave = true; #if CAP_SAVE #define MAXBOX 500 -#define POSSCORE 355 // update this when new boxes are added! +#define POSSCORE 369 // update this when new boxes are added! struct score { string ver; @@ -730,6 +730,20 @@ void applyBoxes() { list_invorb(); applyBox(irr::bitruncations_performed); + + applyBoxI(itVarTreasure); + applyBoxI(itBrownian); + applyBoxI(itWest); + applyBoxM(moAcidBird); + applyBoxM(moBrownBug); + applyBoxM(moVariantWarrior); + applyBoxM(moWestHawk); + applyBoxM(moFallingDog); + applyBoxOrb(itOrbIntensity); + applyBoxOrb(itOrbChoice); + applyBoxOrb(itOrbGravity); + list_invorb(); + if(POSSCORE != boxid) printf("ERROR: %d boxes\n", boxid); }