Skip to content

Commit

Permalink
Merge 2.8.4 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
net committed Jun 24, 2017
2 parents d400147 + 7e183f0 commit 344f9f7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<groupId>org.mctourney.autoreferee</groupId>
<artifactId>AutoReferee</artifactId>
<version>2.8.3</version>
<version>2.8.4</version>
<name>AutoReferee Core Plugin</name>
<url>https://www.reddit.com/r/mctourney</url>
<description>Bukkit plugin for automatically refereeing competitive Minecraft matches.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,10 @@ else if ("inventory".equalsIgnoreCase(parts[0]))
player.sendMessage(ChatColor.DARK_GRAY + "Cannot show inventory for " + parts[2]);
}
}
else if (message.contains("panic")){
match.updateReferee(player);
player.sendMessage(ChatColor.DARK_RED + "Panic button successful.");
}
}
catch (UnsupportedEncodingException e)
{ AutoReferee.log("Unsupported encoding: " + AutoReferee.PLUGIN_CHANNEL_ENC); }
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: AutoReferee
main: org.mctourney.autoreferee.AutoReferee
version: 2.8.3
version: 2.8.4
author: "authorblues, net"
load: startup

Expand Down

0 comments on commit 344f9f7

Please sign in to comment.