diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-01 10:59:41 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-01 10:59:41 -0300 |
commit | 979ba62545c83782f2faf5f5426629024056165c (patch) | |
tree | d150266947cbdcfd70ce94504b139249890faf9b /npc | |
parent | 99aa4c4015a0805620d07139ff604ed39fe2480f (diff) | |
download | serverdata-979ba62545c83782f2faf5f5426629024056165c.tar.gz serverdata-979ba62545c83782f2faf5f5426629024056165c.tar.bz2 serverdata-979ba62545c83782f2faf5f5426629024056165c.tar.xz serverdata-979ba62545c83782f2faf5f5426629024056165c.zip |
Fix typo
Diffstat (limited to 'npc')
-rw-r--r-- | npc/012-3/alan.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/012-3/alan.txt b/npc/012-3/alan.txt index 982da23e3..795d7f6c1 100644 --- a/npc/012-3/alan.txt +++ b/npc/012-3/alan.txt @@ -99,7 +99,7 @@ OnInit: if ($ARKIM_ST > 2800) sellitem CursedAmmoBox, -1, (($ARKIM_ST-1400)/200); if ($ARKIM_ST > 5600) - sellitem PoisonArrow, -1, (($ARKIM_ST-2800)/200); + sellitem PoisonAmmoBox, -1, (($ARKIM_ST-2800)/200); end; @@ -115,7 +115,7 @@ OnClock1151: if ($ARKIM_ST > 2800) restoreshopitem CursedAmmoBox, -1, (($ARKIM_ST-1400)/200); if ($ARKIM_ST > 5600) - restoreshopitem PoisonArrow, -1, (($ARKIM_ST-2800)/200); + restoreshopitem PoisonAmmoBox, -1, (($ARKIM_ST-2800)/200); OnClock0611: OnClock1800: restoreshopitem TrainingArrow, -1, 2000; @@ -124,6 +124,6 @@ OnClock1800: if ($ARKIM_ST > 1400) restoreshopitem CursedArrow, -1, $ARKIM_ST-1400; if ($ARKIM_ST > 2800) - restoreshopitem PoisonArrow, -1, $ARKIM_ST-2800; + restoreshopitem PoisonAmmoBox, -1, $ARKIM_ST-2800; } |