ambush:: nicer guard_attack message

This commit is contained in:
Zeno Rogue 2023-10-29 07:57:20 +01:00
parent 1f6bee5701
commit 669814efce
1 changed files with 1 additions and 1 deletions

View File

@ -906,7 +906,7 @@ EX void ambush(cell *c, int dogs) {
}
EX void guard_attack() {
addMessage(XLAT("%The1 alarms other dogs as it dies!", moHunterGuard));
addMessage(XLAT("%The1 alarms other dogs as it dies!", moHunterDog));
for(cell *c: dcal) if(c->monst == moHunterGuard) c->monst = moHunterDog;
ambush(cwt.at, 7);
}