summaryrefslogtreecommitdiff
path: root/npc/functions/inventoryplace.txt
diff options
context:
space:
mode:
authorReid Yaro <reidyaro@gmail.com>2013-08-08 17:36:55 +0100
committerReid Yaro <reidyaro@gmail.com>2013-08-08 17:36:55 +0100
commit19bf0cd9b2848cce57bf6f796a5e19bc67fdd004 (patch)
tree5c41efb198f70abe45f53d857cdf5cc0d8b11af3 /npc/functions/inventoryplace.txt
parent4db83bef44332fa05cfa42fdce9d985584206ce7 (diff)
downloadserverdata-19bf0cd9b2848cce57bf6f796a5e19bc67fdd004.tar.gz
serverdata-19bf0cd9b2848cce57bf6f796a5e19bc67fdd004.tar.bz2
serverdata-19bf0cd9b2848cce57bf6f796a5e19bc67fdd004.tar.xz
serverdata-19bf0cd9b2848cce57bf6f796a5e19bc67fdd004.zip
Change every label names from l_ to L_ .
Diffstat (limited to 'npc/functions/inventoryplace.txt')
-rw-r--r--npc/functions/inventoryplace.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/inventoryplace.txt b/npc/functions/inventoryplace.txt
index b34e773a..c51cbf1f 100644
--- a/npc/functions/inventoryplace.txt
+++ b/npc/functions/inventoryplace.txt
@@ -14,12 +14,12 @@ function script InventoryPlace {
set @iteminfo, getiteminfo(getarg(0), 2);
set @countitem, countitem(getarg(0));
- if (checkweight(getarg(0), getarg(1)) == 0) goto l_Warn;
+ if (checkweight(getarg(0), getarg(1)) == 0) goto L_Warn;
if ((@iteminfo < 4) && (@countitem == 0) && (@inventorylist_count < 100)) return;
if ((@iteminfo < 4) && (@countitem > 0)) return;
if (@inventorylist_count + getarg(1) <= 100) return;
-l_Warn:
+L_Warn:
mes "";
mesn "Narrator";
mes col(l("It looks like you can't carry anything else for now."), 9);