[Version 0.7.5.2]
- Make sure our timer is stopped on disable - Move Event reg before loading gates to stop portal material vanishing
This commit is contained in:
parent
425d5a988d
commit
9f76acbc17
3
README
3
README
@ -201,6 +201,9 @@ createConflict=Gate conflicts with existing gate
|
|||||||
=============
|
=============
|
||||||
Changes
|
Changes
|
||||||
=============
|
=============
|
||||||
|
[Version 0.7.5.2]
|
||||||
|
- Make sure our timer is stopped on disable
|
||||||
|
- Move Event reg before loading gates to stop portal material vanishing
|
||||||
[Version 0.7.5.1]
|
[Version 0.7.5.1]
|
||||||
- Don't create button on failed creation
|
- Don't create button on failed creation
|
||||||
[Version 0.7.5.0]
|
[Version 0.7.5.0]
|
||||||
|
@ -89,6 +89,7 @@ public class Stargate extends JavaPlugin {
|
|||||||
public void onDisable() {
|
public void onDisable() {
|
||||||
Portal.closeAllGates();
|
Portal.closeAllGates();
|
||||||
Portal.clearGates();
|
Portal.clearGates();
|
||||||
|
getServer().getScheduler().cancelTasks(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onEnable() {
|
public void onEnable() {
|
||||||
@ -106,6 +107,15 @@ public class Stargate extends JavaPlugin {
|
|||||||
|
|
||||||
log.info(pdfFile.getName() + " v." + pdfFile.getVersion() + " is enabled.");
|
log.info(pdfFile.getName() + " v." + pdfFile.getVersion() + " is enabled.");
|
||||||
|
|
||||||
|
// Register events before loading gates to stop weird things happening.
|
||||||
|
pm.registerEvents(new pListener(), this);
|
||||||
|
pm.registerEvents(new bListener(), this);
|
||||||
|
|
||||||
|
pm.registerEvents(new vListener(), this);
|
||||||
|
pm.registerEvents(new eListener(), this);
|
||||||
|
pm.registerEvents(new wListener(), this);
|
||||||
|
pm.registerEvents(new sListener(), this);
|
||||||
|
|
||||||
this.loadConfig();
|
this.loadConfig();
|
||||||
this.migrate();
|
this.migrate();
|
||||||
this.reloadGates();
|
this.reloadGates();
|
||||||
@ -124,14 +134,6 @@ public class Stargate extends JavaPlugin {
|
|||||||
log.info("[Stargate] Vault v" + iConomyHandler.vault.getDescription().getVersion() + " found");
|
log.info("[Stargate] Vault v" + iConomyHandler.vault.getDescription().getVersion() + " found");
|
||||||
}
|
}
|
||||||
|
|
||||||
pm.registerEvents(new pListener(), this);
|
|
||||||
pm.registerEvents(new bListener(), this);
|
|
||||||
|
|
||||||
pm.registerEvents(new vListener(), this);
|
|
||||||
pm.registerEvents(new eListener(), this);
|
|
||||||
pm.registerEvents(new wListener(), this);
|
|
||||||
pm.registerEvents(new sListener(), this);
|
|
||||||
|
|
||||||
getServer().getScheduler().scheduleSyncRepeatingTask(this, new SGThread(), 0L, 100L);
|
getServer().getScheduler().scheduleSyncRepeatingTask(this, new SGThread(), 0L, 100L);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
name: Stargate
|
name: Stargate
|
||||||
main: net.TheDgtl.Stargate.Stargate
|
main: net.TheDgtl.Stargate.Stargate
|
||||||
version: 0.7.5.1
|
version: 0.7.5.2
|
||||||
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