Merge pull request #345 from Glitchfinder/master

Fixing issues with latest spout.
This commit is contained in:
Glitchfinder 2012-12-25 21:27:50 -08:00
commit 6f081eb1e4
2 changed files with 2 additions and 2 deletions

View File

@ -124,7 +124,7 @@
<dependency> <dependency>
<groupId>org.getspout</groupId> <groupId>org.getspout</groupId>
<artifactId>spoutplugin</artifactId> <artifactId>spoutplugin</artifactId>
<version>dev-SNAPSHOT</version> <version>LATEST</version>
<type>jar</type> <type>jar</type>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>

View File

@ -571,7 +571,7 @@ public class SpoutStuff {
* Re-enable SpoutCraft for players after a /reload * Re-enable SpoutCraft for players after a /reload
*/ */
public static void reloadSpoutPlayers() { public static void reloadSpoutPlayers() {
for (SpoutPlayer spoutPlayer : SpoutManager.getPlayerManager().getOnlinePlayers()) { for (SpoutPlayer spoutPlayer : SpoutManager.getPlayerChunkMap().getOnlinePlayers()) {
SpoutCraftEnableEvent spoutCraftEnableEvent = new SpoutCraftEnableEvent(spoutPlayer); SpoutCraftEnableEvent spoutCraftEnableEvent = new SpoutCraftEnableEvent(spoutPlayer);
mcMMO.p.getServer().getPluginManager().callEvent(spoutCraftEnableEvent); mcMMO.p.getServer().getPluginManager().callEvent(spoutCraftEnableEvent);
} }