Fixed parsing instanceId.

This commit is contained in:
MobiusDevelopment
2021-05-25 22:00:26 +00:00
parent 432f235dc5
commit c6bbb601be
6 changed files with 6 additions and 6 deletions

View File

@@ -147,7 +147,7 @@ public class TimedHuntingZoneData implements IXmlReader
} }
case "instanceId": case "instanceId":
{ {
refillTimeMax = Integer.parseInt(zoneNode.getTextContent()); instanceId = Integer.parseInt(zoneNode.getTextContent());
break; break;
} }
case "weekly": case "weekly":

View File

@@ -147,7 +147,7 @@ public class TimedHuntingZoneData implements IXmlReader
} }
case "instanceId": case "instanceId":
{ {
refillTimeMax = Integer.parseInt(zoneNode.getTextContent()); instanceId = Integer.parseInt(zoneNode.getTextContent());
break; break;
} }
case "weekly": case "weekly":

View File

@@ -147,7 +147,7 @@ public class TimedHuntingZoneData implements IXmlReader
} }
case "instanceId": case "instanceId":
{ {
refillTimeMax = Integer.parseInt(zoneNode.getTextContent()); instanceId = Integer.parseInt(zoneNode.getTextContent());
break; break;
} }
case "weekly": case "weekly":

View File

@@ -147,7 +147,7 @@ public class TimedHuntingZoneData implements IXmlReader
} }
case "instanceId": case "instanceId":
{ {
refillTimeMax = Integer.parseInt(zoneNode.getTextContent()); instanceId = Integer.parseInt(zoneNode.getTextContent());
break; break;
} }
case "weekly": case "weekly":

View File

@@ -147,7 +147,7 @@ public class TimedHuntingZoneData implements IXmlReader
} }
case "instanceId": case "instanceId":
{ {
refillTimeMax = Integer.parseInt(zoneNode.getTextContent()); instanceId = Integer.parseInt(zoneNode.getTextContent());
break; break;
} }
case "weekly": case "weekly":

View File

@@ -147,7 +147,7 @@ public class TimedHuntingZoneData implements IXmlReader
} }
case "instanceId": case "instanceId":
{ {
refillTimeMax = Integer.parseInt(zoneNode.getTextContent()); instanceId = Integer.parseInt(zoneNode.getTextContent());
break; break;
} }
case "weekly": case "weekly":