From 28e0b8303ac16810be6208e58e9a19532e6d6cf8 Mon Sep 17 00:00:00 2001 From: E Athena Server Date: Sun, 1 May 2011 14:23:46 +0200 Subject: Sync remote state. Update latest version. --- news.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/news.php b/news.php index 4b2cc414..7ab51a9c 100644 --- a/news.php +++ b/news.php @@ -14,7 +14,7 @@ if (substr($agent, 0, 3) == "TMW" || substr($agent, 0, 4) == "Mana") } $min_version = '0.0.29.1'; -$cur_version = '0.0.29.1'; +$cur_version = '0.5.2'; if (substr($agent, 0, 3) == "TMW" and $agent < 'TMW/' . $min_version) { -- cgit v1.2.3-60-g2f50 From 44552917efd5117214fa2a77cc6dc5f13ae55281 Mon Sep 17 00:00:00 2001 From: Enchilado Date: Mon, 2 May 2011 13:57:03 +1000 Subject: Fixed bug in lover's script. Before, all of a player's Dark Crystals were removed, not just the required amount. --- npc/027-2_Caretakers_House/lover.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npc/027-2_Caretakers_House/lover.txt b/npc/027-2_Caretakers_House/lover.txt index e194dce5..7233cb57 100644 --- a/npc/027-2_Caretakers_House/lover.txt +++ b/npc/027-2_Caretakers_House/lover.txt @@ -71,7 +71,7 @@ L_Crystals: if (countitem("DarkCrystal") < @CRYSTAL_AMOUNT) goto L_Not_Enough_Crystals; - delitem "DarkCrystal", countitem("DarkCrystal"); + delitem "DarkCrystal", @CRYSTAL_AMOUNT; getexp @CRYSTAL_EXP, 0; next; mes "\"Oh, I can feel them! Please lay them down on the floor.\""; -- cgit v1.2.3-60-g2f50