1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-04 11:37:55 +00:00

added some missing guards

This commit is contained in:
Zeno Rogue
2025-06-22 15:41:43 +02:00
parent d4bb23b8eb
commit 537a3b8779
10 changed files with 49 additions and 6 deletions

View File

@@ -514,8 +514,10 @@ EX void killMonster(cell *c, eMonster who, flagtype deathflags IS(0)) {
history::killhistory.push_back(make_pair(c,m));
}
#endif
#if CAP_COMPLEX2
if(m == moHunterGuard) ambush::guard_attack();
#endif
if(m == moGolemMoved) m = moGolem;
if(m == moKnightMoved) m = moKnight;