1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-24 01:00:25 +00:00

fixed int to flagtype

This commit is contained in:
Zeno Rogue 2018-01-20 18:16:41 +01:00
parent 1f0c070405
commit 72a48e615e

View File

@ -2221,7 +2221,7 @@ void killMonster(cell *c, eMonster who, flagtype deathflags) {
fallingMonsterAnimation(c, m);
}
void fightmessage(eMonster victim, eMonster attacker, bool stun, int flags) {
void fightmessage(eMonster victim, eMonster attacker, bool stun, flagtype flags) {
if(isBird(attacker)) {
playSound(NULL, "hit-axe"+pick123());
@ -3586,7 +3586,7 @@ int landheattype(cell *c) {
}
// move value
int moveval(cell *c1, cell *c2, int d, int mf) {
int moveval(cell *c1, cell *c2, int d, flagtype mf) {
if(!c2) return -5000;
eMonster m = c1->monst;