From 669814efcecf7589132f2052eb8c52a5b3efd795 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 29 Oct 2023 07:57:20 +0100 Subject: [PATCH] ambush:: nicer guard_attack message --- complex2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/complex2.cpp b/complex2.cpp index 94507f5f..6381bc42 100644 --- a/complex2.cpp +++ b/complex2.cpp @@ -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); }