Skip to content

Commit

Permalink
Bug fix release for #14
Browse files Browse the repository at this point in the history
  • Loading branch information
stephan-gh committed Jun 7, 2014
1 parent faeb851 commit fd7c87e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public StatusPacketListener() {
@Override // Server status packet
public void onPacketSending(final PacketEvent event) {
final WrappedServerPing ping = event.getPacket().getServerPings().read(0);
boolean playersHidden = ping.isPlayersVisible();
boolean playersHidden = !ping.isPlayersVisible();

ServerStatusManager.Response response = core.getStatus().createResponse(event.getPlayer().getAddress()
.getAddress(), playersHidden ? new ServerStatusManager.ResponseFetcher() :
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ buildscript {
}

allprojects {
version = '3.2-SNAPSHOT'
version = '3.1.1'
}

ext {
Expand Down

0 comments on commit fd7c87e

Please sign in to comment.