Added default hiscore file to SVN.
This commit is contained in:
parent
b8d1237522
commit
b8bc4af6f0
Binary file not shown.
BIN
data/hiscores.db
BIN
data/hiscores.db
Binary file not shown.
Binary file not shown.
5
rc.c
5
rc.c
|
@ -15068,9 +15068,10 @@ void selectspell(sprite_t *s) {
|
||||||
s->timer2 = KC_SPELLCASTTIME;
|
s->timer2 = KC_SPELLCASTTIME;
|
||||||
s->timer4 = 0; // for spell effects
|
s->timer4 = 0; // for spell effects
|
||||||
|
|
||||||
if (s->timer5 >= 2) {
|
if (s->timer5 >= 3) {
|
||||||
s->timer3 = SPL_TELEPORT;
|
s->timer3 = SPL_TELEPORT;
|
||||||
} else if (countmonsters(ALL) <= 2) {
|
s->timer5 = 0;
|
||||||
|
} else if (countmonsters(ALL) <= 3) {
|
||||||
// if there aren't anough monsters, summon
|
// if there aren't anough monsters, summon
|
||||||
// some more.
|
// some more.
|
||||||
s->timer3 = SPL_SUMMON;
|
s->timer3 = SPL_SUMMON;
|
||||||
|
|
1
shared.c
1
shared.c
|
@ -3827,7 +3827,6 @@ int isnettable(sprite_t *s) {
|
||||||
|
|
||||||
// return starting health for a given boss type
|
// return starting health for a given boss type
|
||||||
int getbosshealth(int mid) {
|
int getbosshealth(int mid) {
|
||||||
if (cheat) return 1;
|
|
||||||
switch (mid) {
|
switch (mid) {
|
||||||
case P_KINGRAT:
|
case P_KINGRAT:
|
||||||
return 8;
|
return 8;
|
||||||
|
|
Loading…
Reference in New Issue