1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-16 19:18:05 +00:00

added the cases for the new features

This commit is contained in:
Zeno Rogue
2017-10-08 14:02:03 +02:00
parent 2ca03ededf
commit 081d24edd7
6 changed files with 74 additions and 11 deletions

View File

@@ -271,7 +271,7 @@ bool havesave = true;
#if CAP_SAVE
#define MAXBOX 500
#define POSSCORE 308 // update this when new boxes are added!
#define POSSCORE 324 // update this when new boxes are added!
struct score {
string ver;
@@ -624,7 +624,25 @@ void applyBoxes() {
#else
{ int u; applyBoxNum(u); }
#endif
// 10.1:
applyBoxI(itLavaLily);
applyBoxI(itDogPlains);
applyBoxI(itBlizzard);
applyBoxI(itTerra);
applyBoxOrb(itOrbSide1);
applyBoxOrb(itOrbSide2);
applyBoxOrb(itOrbSide3);
applyBoxOrb(itOrbLava);
applyBoxOrb(itOrbMorph);
applyBoxM(moHunterDog);
applyBoxM(moIceGolem);
applyBoxM(moVoidBeast);
applyBoxM(moJiangshi);
applyBoxM(moTerraWarrior);
applyBoxM(moSalamander);
applyBoxM(moLavaWolf);
if(POSSCORE != boxid) printf("ERROR: %d boxes\n", boxid);
}