Fixed a loading bug in which invalid gates caused file truncation
This commit is contained in:
parent
896dc04e7a
commit
a9461846de
4
README
4
README
@ -82,6 +82,10 @@ gate-folder - The folder containing your .gate files
|
|||||||
=============
|
=============
|
||||||
Changes
|
Changes
|
||||||
=============
|
=============
|
||||||
|
[Version 0.24]
|
||||||
|
- Fixed a loading bug in which invalid gates caused file truncation
|
||||||
|
[Version 0.23]
|
||||||
|
- Added a check to make sure "nethergate.gate" exists, otherwise create it
|
||||||
[Version 0.22]
|
[Version 0.22]
|
||||||
- Fixed multi-world stargates causing an NPE
|
- Fixed multi-world stargates causing an NPE
|
||||||
[Version 0.21]
|
[Version 0.21]
|
||||||
|
@ -764,15 +764,6 @@ public class Portal {
|
|||||||
|
|
||||||
Portal portal = new Portal(topLeft, modX, modZ, rotX, sign, button, dest, name, false, network, gate, owner, hidden, alwaysOn, priv);
|
Portal portal = new Portal(topLeft, modX, modZ, rotX, sign, button, dest, name, false, network, gate, owner, hidden, alwaysOn, priv);
|
||||||
portal.close(true);
|
portal.close(true);
|
||||||
// Verify portal integrity/register portal
|
|
||||||
if (!portal.isVerified() || !portal.checkIntegrity()) {
|
|
||||||
portal.unregister();
|
|
||||||
Stargate.log.info("[Stargate] Destroying stargate at " + portal.toString());
|
|
||||||
} else {
|
|
||||||
portal.drawSign();
|
|
||||||
portalCount++;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
scanner.close();
|
scanner.close();
|
||||||
|
|
||||||
@ -780,8 +771,18 @@ public class Portal {
|
|||||||
int OpenCount = 0;
|
int OpenCount = 0;
|
||||||
for (Portal portal : allPortals) {
|
for (Portal portal : allPortals) {
|
||||||
if (portal == null) continue;
|
if (portal == null) continue;
|
||||||
|
|
||||||
|
// Verify portal integrity/register portal
|
||||||
|
if (!portal.isVerified() || !portal.checkIntegrity()) {
|
||||||
|
portal.unregister();
|
||||||
|
Stargate.log.info("[Stargate] Destroying stargate at " + portal.toString());
|
||||||
|
continue;
|
||||||
|
} else {
|
||||||
|
portal.drawSign();
|
||||||
|
portalCount++;
|
||||||
|
}
|
||||||
|
|
||||||
if (!portal.isAlwaysOn()) continue;
|
if (!portal.isAlwaysOn()) continue;
|
||||||
if (!portal.wasVerified()) continue;
|
|
||||||
|
|
||||||
Portal dest = portal.getDestination();
|
Portal dest = portal.getDestination();
|
||||||
if (dest != null) {
|
if (dest != null) {
|
||||||
|
@ -148,7 +148,7 @@ public class Stargate extends JavaPlugin {
|
|||||||
public void reloadGates() {
|
public void reloadGates() {
|
||||||
Gate.loadGates(gateFolder);
|
Gate.loadGates(gateFolder);
|
||||||
// Replace nethergate.gate if it doesn't have an exit point.
|
// Replace nethergate.gate if it doesn't have an exit point.
|
||||||
if (Gate.getGateByName("nethergate.gate").getExit() == null) {
|
if (Gate.getGateByName("nethergate.gate") == null || Gate.getGateByName("nethergate.gate").getExit() == null) {
|
||||||
Gate.populateDefaults(gateFolder);
|
Gate.populateDefaults(gateFolder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
name: Stargate
|
name: Stargate
|
||||||
main: net.TheDgtl.Stargate.Stargate
|
main: net.TheDgtl.Stargate.Stargate
|
||||||
version: 0.22
|
version: 0.24
|
||||||
description: Stargate mod for Bukkit
|
description: Stargate mod for Bukkit
|
||||||
author: Drakia
|
author: Drakia
|
||||||
website: http://www.thedgtl.net
|
website: http://www.thedgtl.net
|
Loading…
Reference in New Issue
Block a user