summaryrefslogtreecommitdiff
path: root/npc/functions/util.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2023-11-02 20:26:08 -0300
committerJesusaves <cpntb1@ymail.com>2023-11-02 20:26:08 -0300
commit4b975e62fed71ee7f5c4270325c36efb5dda2789 (patch)
tree20354375d983b9dec3a823b978cc5e381f4bd9a5 /npc/functions/util.txt
parent385a4543ea55fd18da91500b45fd38848943b6b5 (diff)
downloadserverdata-4b975e62fed71ee7f5c4270325c36efb5dda2789.tar.gz
serverdata-4b975e62fed71ee7f5c4270325c36efb5dda2789.tar.bz2
serverdata-4b975e62fed71ee7f5c4270325c36efb5dda2789.tar.xz
serverdata-4b975e62fed71ee7f5c4270325c36efb5dda2789.zip
Fix a slightly typo breaking some boss control code
Diffstat (limited to 'npc/functions/util.txt')
-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;
}