From b8bc4af6f0f0a1fb62841ba38a5a828a783c64e7 Mon Sep 17 00:00:00 2001 From: Rob Pearce Date: Sun, 25 Aug 2013 06:51:05 +0000 Subject: [PATCH] Added default hiscore file to SVN. --- data/default.hiscores.db | Bin 0 -> 2048 bytes data/hiscores.db | Bin 2048 -> 2048 bytes data/hiscores.easy.db | Bin 2048 -> 2048 bytes data/hiscores.esay.db | 0 rc.c | 5 +++-- shared.c | 1 - 6 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 data/default.hiscores.db delete mode 100644 data/hiscores.esay.db diff --git a/data/default.hiscores.db b/data/default.hiscores.db new file mode 100644 index 0000000000000000000000000000000000000000..cf26bd870661601ea300889161ccd7fdc0121653 GIT binary patch literal 2048 zcmWFz^vNtqRY=P(%1ta$FlJz3U}R))P*7lCU|ETcsOn`>fG z4pW0lRa4X6ddC6cwAttb1<_im?*jlyMi4;& diff --git a/data/hiscores.esay.db b/data/hiscores.esay.db deleted file mode 100644 index e69de29..0000000 diff --git a/rc.c b/rc.c index 851d212..a5aa1c2 100644 --- a/rc.c +++ b/rc.c @@ -15068,9 +15068,10 @@ void selectspell(sprite_t *s) { s->timer2 = KC_SPELLCASTTIME; s->timer4 = 0; // for spell effects - if (s->timer5 >= 2) { + if (s->timer5 >= 3) { s->timer3 = SPL_TELEPORT; - } else if (countmonsters(ALL) <= 2) { + s->timer5 = 0; + } else if (countmonsters(ALL) <= 3) { // if there aren't anough monsters, summon // some more. s->timer3 = SPL_SUMMON; diff --git a/shared.c b/shared.c index 4d1971a..bdad35b 100644 --- a/shared.c +++ b/shared.c @@ -3827,7 +3827,6 @@ int isnettable(sprite_t *s) { // return starting health for a given boss type int getbosshealth(int mid) { - if (cheat) return 1; switch (mid) { case P_KINGRAT: return 8;