Uppercase name for CursedWeapons and DimensionalRift XML files.
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/cursedWeapons.xsd">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/CursedWeapons.xsd">
|
||||||
<item id="8190" skillId="3603" name="Demonic Sword Zariche">
|
<item id="8190" skillId="3603" name="Demonic Sword Zariche">
|
||||||
<dropRate val="1" />
|
<dropRate val="1" />
|
||||||
<!-- 100000 for 100% -->
|
<!-- 100000 for 100% -->
|
@@ -1,5 +1,5 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<rift xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/dimensionalRift.xsd">
|
<rift xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/DimensionalRift.xsd">
|
||||||
<!-- #################################################################### RECRUTES AREA -->
|
<!-- #################################################################### RECRUTES AREA -->
|
||||||
<area type="1">
|
<area type="1">
|
||||||
<room id="1">
|
<room id="1">
|
@@ -103,7 +103,7 @@ public class CursedWeaponsManager
|
|||||||
factory.setValidating(false);
|
factory.setValidating(false);
|
||||||
factory.setIgnoringComments(true);
|
factory.setIgnoringComments(true);
|
||||||
|
|
||||||
final File file = new File(Config.DATAPACK_ROOT + "/data/cursedWeapons.xml");
|
final File file = new File(Config.DATAPACK_ROOT + "/data/CursedWeapons.xml");
|
||||||
if (!file.exists())
|
if (!file.exists())
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
|
@@ -160,7 +160,7 @@ public class DimensionalRiftManager
|
|||||||
factory.setValidating(false);
|
factory.setValidating(false);
|
||||||
factory.setIgnoringComments(true);
|
factory.setIgnoringComments(true);
|
||||||
|
|
||||||
final File file = new File(Config.DATAPACK_ROOT + "/data/dimensionalRift.xml");
|
final File file = new File(Config.DATAPACK_ROOT + "/data/DimensionalRift.xml");
|
||||||
if (!file.exists())
|
if (!file.exists())
|
||||||
{
|
{
|
||||||
throw new IOException();
|
throw new IOException();
|
||||||
|
Reference in New Issue
Block a user