summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2019-06-01 16:24:19 +0200
committerGitHub <noreply@github.com>2019-06-01 16:24:19 +0200
commit0c15e816e4facb92b06b13615cf6713eaea490f2 (patch)
tree83f2b49d0f0a9b6622b858908cd5ccb205b4c24d /npc
parent0e18ff7d7fb86451fd3ac2bb7e18327dce3afaf4 (diff)
parent3bfc14f1eb52980e8a8610b4f4533fe81966bb98 (diff)
downloadhercules-0c15e816e4facb92b06b13615cf6713eaea490f2.tar.gz
hercules-0c15e816e4facb92b06b13615cf6713eaea490f2.tar.bz2
hercules-0c15e816e4facb92b06b13615cf6713eaea490f2.tar.xz
hercules-0c15e816e4facb92b06b13615cf6713eaea490f2.zip
Merge pull request #2380 from AnnieRuru/59-all_All
Standardize to "all" in script commands
Diffstat (limited to 'npc')
-rw-r--r--npc/custom/events/mushroom_event.txt2
-rw-r--r--npc/re/instances/ghost_palace.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/custom/events/mushroom_event.txt b/npc/custom/events/mushroom_event.txt
index b04b99fff..fc7446814 100644
--- a/npc/custom/events/mushroom_event.txt
+++ b/npc/custom/events/mushroom_event.txt
@@ -41,7 +41,7 @@ OnMinute10: // Start time (every hour)
set .status,1;
set .Spawn,rand(1,10); // How many Mushrooms should spawn?
set .Map$,.maps$[rand(getarraysize(.maps$))];
- killmonster .Map$,"All";
+ killmonster(.Map$, "all");
monster .Map$,0,0,"Please don't kill me!",1084,.Spawn,strnpcinfo(NPC_NAME)+"::OnMobKilled";
announce "Find the Mushroom : Total of "+.Spawn+" Mushrooms have been spawned in "+.Map$+"!",0;
sleep 2500;
diff --git a/npc/re/instances/ghost_palace.txt b/npc/re/instances/ghost_palace.txt
index 3e708dc57..a291984db 100644
--- a/npc/re/instances/ghost_palace.txt
+++ b/npc/re/instances/ghost_palace.txt
@@ -601,7 +601,7 @@ OnInstanceInit:
OnStart:
stopnpctimer instance_npcname("#gp3control");
disablenpc(instance_npcname("#gp3control"));
- killmonster(instance_mapname("1@spa"), "All");
+ killmonster(instance_mapname("1@spa"), "all");
disablenpc(instance_npcname("#gp3warp"));
enablenpc(instance_npcname("Lurid Royal Guard#gp5"));
enablenpc(instance_npcname("Tiara Princess#gp5"));