Release 1.8.4

Also updated Spigot and Dynmap API version references, and one very minor bit of code cleanup.
This commit is contained in:
Brettflan 2015-06-23 12:38:26 -05:00
parent 99bfc689f2
commit a349063a74
3 changed files with 8 additions and 8 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.wimbli.WorldBorder</groupId>
<artifactId>WorldBorder</artifactId>
<version>1.8.3</version>
<version>1.8.4</version>
<name>WorldBorder</name>
<url>https://github.com/Brettflan/WorldBorder</url>
<issueManagement>
@ -31,19 +31,19 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.8-R0.1-SNAPSHOT</version>
<version>1.8.7-R0.1-SNAPSHOT</version>
</dependency>
<!--Bukkit API-->
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.8-R0.1-SNAPSHOT</version>
<version>1.8.7-R0.1-SNAPSHOT</version>
</dependency>
<!--Dynmap API-->
<dependency>
<groupId>org.dynmap</groupId>
<artifactId>dynmap-api</artifactId>
<version>1.8</version>
<version>2.0</version>
</dependency>
</dependencies>

View File

@ -28,11 +28,11 @@ public class BorderCheckTask implements Runnable
if (Config.KnockBack() == 0.0)
return;
Collection players = ImmutableList.copyOf(Bukkit.getServer().getOnlinePlayers());
Collection<Player> players = ImmutableList.copyOf(Bukkit.getServer().getOnlinePlayers());
for (Object player : players)
for (Player player : players)
{
checkPlayer((Player)player, null, false, true);
checkPlayer(player, null, false, true);
}
}

View File

@ -1,7 +1,7 @@
name: WorldBorder
author: Brettflan
description: Efficient, feature-rich plugin for limiting the size of your worlds.
version: 1.8.3
version: 1.8.4
main: com.wimbli.WorldBorder.WorldBorder
softdepend:
- dynmap