diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-10-29 00:52:19 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-10-29 00:52:19 -0300 |
commit | 73c28414416070895e4558f629d26bc6344ad999 (patch) | |
tree | 8176333277b2ee20273c45e67cea33c5b8c7a420 | |
parent | 4dc33403dbc475f5be7350d5337909a3daf3074d (diff) | |
download | serverdata-73c28414416070895e4558f629d26bc6344ad999.tar.gz serverdata-73c28414416070895e4558f629d26bc6344ad999.tar.bz2 serverdata-73c28414416070895e4558f629d26bc6344ad999.tar.xz serverdata-73c28414416070895e4558f629d26bc6344ad999.zip |
Fix the Fortress Entrance bats so they're reall, not faked
-rw-r--r-- | npc/025-3/ctrl.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/025-3/ctrl.c b/npc/025-3/ctrl.c index 412162b20..0356d6823 100644 --- a/npc/025-3/ctrl.c +++ b/npc/025-3/ctrl.c @@ -54,7 +54,10 @@ OnMoubiKill: setq General_Fortress, 1, 0, 0; getexp 0, 50000; } - fix_mobkill(AngryBat); + if (!killedrid) + fix_mobkill(AngryBat); + else + fix_mobkill(killedrid); end; } |