summaryrefslogtreecommitdiff
path: root/world/map/npc/012-1
diff options
context:
space:
mode:
authorwushin <pasekei@gmail.com>2015-05-04 15:20:23 -0500
committerwushin <pasekei@gmail.com>2015-05-04 15:22:27 -0500
commitdbee3775ca8cb0058e2fd06de93037887f71f0a4 (patch)
treec1895fca2199bde716bda8ca27f1d83a377499a5 /world/map/npc/012-1
parent969b8628b353e7e5bbdeaac5b4afe46a8a313e4f (diff)
downloadserverdata-dbee3775ca8cb0058e2fd06de93037887f71f0a4.tar.gz
serverdata-dbee3775ca8cb0058e2fd06de93037887f71f0a4.tar.bz2
serverdata-dbee3775ca8cb0058e2fd06de93037887f71f0a4.tar.xz
serverdata-dbee3775ca8cb0058e2fd06de93037887f71f0a4.zip
Fix getitemlink in menus
Diffstat (limited to 'world/map/npc/012-1')
-rw-r--r--world/map/npc/012-1/injured-mouboo.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/npc/012-1/injured-mouboo.txt b/world/map/npc/012-1/injured-mouboo.txt
index 63eb2996..de4b8edf 100644
--- a/world/map/npc/012-1/injured-mouboo.txt
+++ b/world/map/npc/012-1/injured-mouboo.txt
@@ -97,6 +97,7 @@ L_pickup_alive:
L_give:
set @items_nr, 12;
setarray @items$, "CactusDrink", "CactusPotion", "ChocolateBar", "Milk", "OrangeCupcake", "RedApple", "Beer", "BottleOfWater", "TinyHealingPotion", "SmallHealingPotion", "MediumHealingPotion", "LargeHealingPotion";
+ setarray @itemnames$, "Cactus Drink", "Cactus Potion", "Chocolate Bar", "Milk", "Orange Cupcake", "Red Apple", "Beer", "Bottle of Water", "Tiny Healing Potion", "Small Healing Potion", "Medium Healing Potion", "Large Healing Potion";
setarray @itemeat, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0;
setarray @menuItems$, "", "", "", "", "", "", "", "", "", "", "", "", "";
@@ -113,8 +114,7 @@ L_nloop:
if (countitem(@k$) == 0)
goto L_nloop_skip;
- set @name$, getitemlink(@k$);
- set @menuItems$[@ct], @name$;
+ set @menuItems$[@ct], @itemnames$[@n];
set @menuNames$[@ct], @k$;
set @choice_eat[@ct], @itemeat[@n];
set @ct, @ct + 1;