diff options
author | Reid <reidyaro@gmail.com> | 2012-11-28 09:46:09 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2012-11-28 09:46:09 +0100 |
commit | 95ac18595f920b220a9510fcc7d06f172b57807f (patch) | |
tree | 0abe1378748c322be8a505ca402044312ece6b42 /npc | |
parent | fffb04603705405864985c8f781a640ffb9e90ab (diff) | |
download | serverdata-95ac18595f920b220a9510fcc7d06f172b57807f.tar.gz serverdata-95ac18595f920b220a9510fcc7d06f172b57807f.tar.bz2 serverdata-95ac18595f920b220a9510fcc7d06f172b57807f.tar.xz serverdata-95ac18595f920b220a9510fcc7d06f172b57807f.zip |
Fix bug on Gugli's list of sailors.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/000-1/gugli.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/000-1/gugli.txt b/npc/000-1/gugli.txt index 9bed5132..a0844355 100644 --- a/npc/000-1/gugli.txt +++ b/npc/000-1/gugli.txt @@ -112,12 +112,12 @@ l_CollectSmthing: if (countitem("PlushroomBox") == 1) delitem "PlushroomBox", 1; mesq l("You still need to give me boxes from: "); - if (getq(ShipQuests_Astapolos) == 0), l("- Astapolos"); - if (getq(ShipQuests_Ale) == 0), l("- Ale"); - if (getq(ShipQuests_Gulukan) == 0), l("- Gulukan"); - if (getq(ShipQuests_Jalad) == 0), l("- Jalad"); - if (getq(ShipQuests_QMuller) == 0), l("- QMuller"); - if (getq(ShipQuests_Tibbo) == 0), l("- Tibbo"); + if (getq(ShipQuests_Astapolos) == 0), mesq l("- Astapolos"); + if (getq(ShipQuests_Ale) == 0), mesq l("- Ale"); + if (getq(ShipQuests_Gulukan) == 0), mesq l("- Gulukan"); + if (getq(ShipQuests_Jalad) == 0), mesq l("- Jalad"); + if (getq(ShipQuests_QMuller) == 0), mesq l("- QMuller"); + if (getq(ShipQuests_Tibbo) == 0), mesq l("- Tibbo"); close; |