Skip to content

Commit

Permalink
PLUGIN OF THE DECADE REDUX
Browse files Browse the repository at this point in the history
  • Loading branch information
mbax committed Mar 2, 2016
1 parent 69b2e8d commit 5e14e84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.ensifera</groupId>
<artifactId>CraftIRC</artifactId>
<packaging>jar</packaging>
<version>3.9.7</version>
<version>3.9.8</version>
<name>CraftIRC</name>
<url>http://www.github.com/CraftIRC/3</url>
<properties>
Expand All @@ -26,7 +26,7 @@
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.2-R0.3</version>
<version>1.7.10-R0.1-SNAPSHOT</version>
<type>jar</type>
<scope>provided</scope>
<optional>true</optional>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/ensifera/animosity/craftirc/Metrics.java
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ private void postPlugin(boolean isPing) throws IOException {
boolean onlineMode = Bukkit.getServer().getOnlineMode(); // TRUE if online mode is enabled
String pluginVersion = description.getVersion();
String serverVersion = Bukkit.getVersion();
int playersOnline = Bukkit.getServer().getOnlinePlayers().length;
int playersOnline = Bukkit.getServer().getOnlinePlayers().size();

// END server software specific section -- all code below does not use any code outside of this class / Java

Expand Down

0 comments on commit 5e14e84

Please sign in to comment.