summaryrefslogtreecommitdiff
path: root/npc/001-10
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-11-23 10:38:26 -0200
committerJesusaves <cpntb1@ymail.com>2018-11-23 10:38:26 -0200
commitbb3cb7830c8ddd45d1beb7e645d379cbacc8cea4 (patch)
treebf12675e7806740f05a47e7c1705ca5115ecc446 /npc/001-10
parentef092b260e40ac60ea5847e4e69d34e8ee905b19 (diff)
downloadserverdata-bb3cb7830c8ddd45d1beb7e645d379cbacc8cea4.tar.gz
serverdata-bb3cb7830c8ddd45d1beb7e645d379cbacc8cea4.tar.bz2
serverdata-bb3cb7830c8ddd45d1beb7e645d379cbacc8cea4.tar.xz
serverdata-bb3cb7830c8ddd45d1beb7e645d379cbacc8cea4.zip
Minor typo, nothing wrong here
Diffstat (limited to 'npc/001-10')
-rw-r--r--npc/001-10/scripts.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/001-10/scripts.txt b/npc/001-10/scripts.txt
index da1afcd6e..de2c790b2 100644
--- a/npc/001-10/scripts.txt
+++ b/npc/001-10/scripts.txt
@@ -38,7 +38,7 @@ OnTouch:
001-10,0,0,0 script #CODMASTER NPC_NO_SPRITE,{
end;
function spawner { // (Event, x1, y1, x2, y2, Amount, modifier)
- .@ev=getarg(0, "#CONDMASTER::OnDeath");
+ .@ev$=getarg(0, "#CONDMASTER::OnDeath");
.@x1=getarg(1,0);
.@y1=getarg(2,0);
.@x2=getarg(3,200);
@@ -50,7 +50,7 @@ OnTouch:
.@monsterId=any(DustRifle, DustGatling, DustRevolver);
else
.@monsterId=any(AngryBat, Snake, AngryBat, DesertBandit, AngryBat, Sarracenus);
- areamonster("001-10", .@x1, .@y1, .@x2, .@y2, strmobinfo(1, .@monsterId), .@monsterId, 1, .@ev);
+ areamonster("001-10", .@x1, .@y1, .@x2, .@y2, strmobinfo(1, .@monsterId), .@monsterId, 1, .@ev$);
}
}