Added default hiscore file to SVN.

This commit is contained in:
Rob Pearce 2013-08-25 06:51:05 +00:00
parent b8d1237522
commit b8bc4af6f0
6 changed files with 3 additions and 3 deletions

BIN
data/default.hiscores.db Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

5
rc.c
View File

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

View File

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