diff options
Diffstat (limited to 'world/map/npc/009-4/torches.txt')
-rw-r--r-- | world/map/npc/009-4/torches.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/world/map/npc/009-4/torches.txt b/world/map/npc/009-4/torches.txt index 7049b446..4ad0c686 100644 --- a/world/map/npc/009-4/torches.txt +++ b/world/map/npc/009-4/torches.txt @@ -4,8 +4,8 @@ function|script|GetTorchColor if (@Torch < 0 || @Torch > 2) goto L_Error; set @Mask, 15; - set @Shift, 4 * @Torch; - set @TorchColor, (OrumQuestTorch >> @Shift) & @Mask; + set @shift, 4 * @Torch; + set @TorchColor, (OrumQuestTorch >> @shift) & @Mask; return; L_Error: @@ -36,8 +36,8 @@ function|script|GetTorchIntensity if (@Torch < 0 || @Torch > 2) goto L_Error; set @Mask, 15; - set @Shift, 4 * (@Torch + 3); - set @TorchIntensity, (OrumQuestTorch >> @Shift) & @Mask; + set @shift, 4 * (@Torch + 3); + set @TorchIntensity, (OrumQuestTorch >> @shift) & @Mask; return; L_Error: |