Renamed some XML files.

This commit is contained in:
MobiusDev
2016-03-10 21:20:09 +00:00
parent a3dcf709c8
commit 44102eacfc
68 changed files with 50 additions and 139 deletions

View File

@@ -517,10 +517,10 @@ public class Q00350_EnhanceYourWeapon extends Quest
factory.setValidating(false);
factory.setIgnoringComments(true);
final File file = new File(Config.DATAPACK_ROOT, "levelUpCrystalData.xml");
final File file = new File(Config.DATAPACK_ROOT, "LevelUpCrystalData.xml");
if (!file.exists())
{
_log.severe("[EnhanceYourWeapon] Missing levelUpCrystalData.xml. The quest wont work without it!");
_log.severe("[EnhanceYourWeapon] Missing LevelUpCrystalData.xml. The quest wont work without it!");
return;
}
@@ -657,7 +657,7 @@ public class Q00350_EnhanceYourWeapon extends Quest
}
catch (Exception e)
{
_log.log(Level.WARNING, "[EnhanceYourWeapon] Could not parse levelUpCrystalData.xml file: " + e.getMessage(), e);
_log.log(Level.WARNING, "[EnhanceYourWeapon] Could not parse LevelUpCrystalData.xml file: " + e.getMessage(), e);
}
_log.info("[EnhanceYourWeapon] Loaded " + SOUL_CRYSTALS.size() + " Soul Crystal data.");
_log.info("[EnhanceYourWeapon] Loaded " + NPC_LEVELING_INFO.size() + " npc Leveling info data.");

View File

@@ -325,7 +325,7 @@ public final class Q00511_AwlUnderFoot extends Quest
tele[0] = 53322;
tele[1] = 246380;
tele[2] = -6580;
return enterInstance(player, "fortdungeon.xml", tele, _fortDungeons.get(npc.getId()), checkFortCondition(player, npc, true));
return enterInstance(player, "FortDungeon.xml", tele, _fortDungeons.get(npc.getId()), checkFortCondition(player, npc, true));
}
final QuestState qs = getQuestState(player, true);