diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2011-02-07 12:35:58 -0800 |
---|---|---|
committer | Stefan Beller <stefanbeller@googlemail.com> | 2011-02-07 22:03:37 +0100 |
commit | dae7a52eb31080a28b427668e9c2d4b4f793b705 (patch) | |
tree | ff5ca0edbd1b16d3d9bcbaf6ca14eb7137f9b7b0 /npc/009-4 | |
parent | c9a586c1d825209aa9118a5179c455e4386e0b07 (diff) | |
download | serverdata-dae7a52eb31080a28b427668e9c2d4b4f793b705.tar.gz serverdata-dae7a52eb31080a28b427668e9c2d4b4f793b705.tar.bz2 serverdata-dae7a52eb31080a28b427668e9c2d4b4f793b705.tar.xz serverdata-dae7a52eb31080a28b427668e9c2d4b4f793b705.zip |
quick transparent torch fix
Diffstat (limited to 'npc/009-4')
-rw-r--r-- | npc/009-4/torches.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/npc/009-4/torches.txt b/npc/009-4/torches.txt index a00ab95c..d478c212 100644 --- a/npc/009-4/torches.txt +++ b/npc/009-4/torches.txt @@ -133,6 +133,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;
@@ -141,6 +142,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;
@@ -150,6 +152,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;
|