summaryrefslogtreecommitdiff
path: root/npc/009-4/torches.txt
diff options
context:
space:
mode:
authorTheKandiman <thekandiman@gmail.com>2011-02-12 11:25:06 -0500
committerTheKandiman <thekandiman@gmail.com>2011-02-12 11:25:06 -0500
commita99d170121beee1b1a0506d98e6e11a8e425c831 (patch)
tree2eff26736c8fcfe973b552cc025b00426db66e9b /npc/009-4/torches.txt
parent17772eb241e2638eac7ea4f324ace1ae23555756 (diff)
parente064b9cfff412a1774db16c01a230e56705a6d27 (diff)
downloadserverdata-a99d170121beee1b1a0506d98e6e11a8e425c831.tar.gz
serverdata-a99d170121beee1b1a0506d98e6e11a8e425c831.tar.bz2
serverdata-a99d170121beee1b1a0506d98e6e11a8e425c831.tar.xz
serverdata-a99d170121beee1b1a0506d98e6e11a8e425c831.zip
Merge git://gitorious.org/~wombat/tmw-eathena-data/cache-serverdata
Diffstat (limited to 'npc/009-4/torches.txt')
-rw-r--r--npc/009-4/torches.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/npc/009-4/torches.txt b/npc/009-4/torches.txt
index 1b17dac6..bff94f0d 100644
--- a/npc/009-4/torches.txt
+++ b/npc/009-4/torches.txt
@@ -219,6 +219,7 @@ L_Use_Red:
if (@TorchColor > 6 && @TorchColor < 12) set @Color, @TorchColor + 1;
if (@TorchColor < 6 && @TorchColor > 1) set @Color, @TorchColor - 1;
if (@TorchColor == 12) set @Color, 1;
+ if (@TorchColor == 0) set @Color, 1;
callfunc("SetTorchColor");
delitem "RedPowder", 1;
goto L_Show_Color;
@@ -227,6 +228,7 @@ L_Use_Yellow:
if (countitem("YellowPowder") < 1) goto L_No_Powder;
if (@TorchColor < 10 && @TorchColor > 5) set @Color, @TorchColor - 1;
if (@TorchColor >= 1 && @TorchColor < 5) set @Color, @TorchColor + 1;
+ if (@TorchColor == 0) set @Color, 5;
callfunc("SetTorchColor");
delitem "YellowPowder", 1;
goto L_Show_Color;
@@ -236,6 +238,7 @@ L_Use_Blue:
if (@TorchColor > 4 && @TorchColor < 9) set @Color, @TorchColor + 1;
if (@TorchColor <= 12 && @TorchColor > 9) set @Color, @TorchColor - 1;
if (@TorchColor == 1) set @Color, 12;
+ if (@TorchColor == 0) set @Color, 9;
callfunc("SetTorchColor");
delitem "BluePowder", 1;
goto L_Show_Color;