diff options
author | toni <toni@toni-EP45-UD3L.(none)> | 2011-04-03 14:51:56 -0300 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2011-04-04 19:26:42 +0200 |
commit | 027ee71cb7cdfeb2834cb8c66b66bd4869b0a556 (patch) | |
tree | 44a8953463281350632d5f12366ee5b18950ad50 /npc/009-2_Hurnscald | |
parent | 3caccb6733bc522932c8abdd5eb8324827035b7d (diff) | |
download | serverdata-027ee71cb7cdfeb2834cb8c66b66bd4869b0a556.tar.gz serverdata-027ee71cb7cdfeb2834cb8c66b66bd4869b0a556.tar.bz2 serverdata-027ee71cb7cdfeb2834cb8c66b66bd4869b0a556.tar.xz serverdata-027ee71cb7cdfeb2834cb8c66b66bd4869b0a556.zip |
Fixing strange bug when using "npcName" as a name for a temporary variable
Diffstat (limited to 'npc/009-2_Hurnscald')
-rw-r--r-- | npc/009-2_Hurnscald/richard.txt | 2 | ||||
-rw-r--r-- | npc/009-2_Hurnscald/shops.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/009-2_Hurnscald/richard.txt b/npc/009-2_Hurnscald/richard.txt index e14b823a..023f1244 100644 --- a/npc/009-2_Hurnscald/richard.txt +++ b/npc/009-2_Hurnscald/richard.txt @@ -2,7 +2,7 @@ 009-2.gat,20,99,0 script Richard 161,{ callfunc "ClearVariables"; - set @npcName$, "Richard"; + set @npcname$, "Richard"; callfunc "Banker"; close; } diff --git a/npc/009-2_Hurnscald/shops.txt b/npc/009-2_Hurnscald/shops.txt index df100d36..733fa54f 100644 --- a/npc/009-2_Hurnscald/shops.txt +++ b/npc/009-2_Hurnscald/shops.txt @@ -11,7 +11,7 @@ // Receptionist // Offers the player to rest at the inn for 100gp 009-2.gat,50,48,0 script Receptionist 108,{ - set @npcName$, "Receptionist"; + set @npcname$, "Receptionist"; set @cost, 100; callfunc "Inn"; } |