summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/functions/util.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt
index 5f7553ff6..3e5faae59 100644
--- a/npc/functions/util.txt
+++ b/npc/functions/util.txt
@@ -1341,9 +1341,9 @@ function script api_send {
function script announce_bosskill {
.@party=getcharid(1);
if (.@party > 0) {
- mapannounce getmap(getarg(0)), getmonsterlink(getarg(1)) + " defeated by Party: " + getpartyname(.@party), bc_all;
+ mapannounce getarg(0), getmonsterlink(getarg(1)) + " defeated by Party: " + getpartyname(.@party), bc_all;
} else {
- mapannounce getmap(getarg(0)), getmonsterlink(getarg(1)) + " defeated by: " + strcharinfo(0), bc_all;
+ mapannounce getarg(0), getmonsterlink(getarg(1)) + " defeated by: " + strcharinfo(0), bc_all;
}
return;
}