Skip to content

Commit

Permalink
This is v3.1.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: SirFaizdat <fdatoo7@gmail.com>
  • Loading branch information
fynntimes committed Feb 5, 2017
1 parent 1a45b9d commit 772e32f
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .idea/modules/prison-core/prison-core.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules/prison-core/prison-core_main.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules/prison-core/prison-core_test.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules/prison-spigot/prison-spigot.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules/prison-spigot/prison-spigot_main.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules/prison-spigot/prison-spigot_test.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules/prison-sponge/prison-sponge.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules/prison-sponge/prison-sponge_main.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules/prison-sponge/prison-sponge_test.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ subprojects {

archivesBaseName = 'Prison'
group = 'tech.mcprison.prison'
version = '3.1.1.0-SNAPSHOT'
version = '3.1.1.0'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ public void versionCommand(CommandSender sender) {
display.text("&7Platform: &3%s", Prison.get().getPlatform().getClass().getName());
display.text("&7Integrations:");

display.text(Text.tab("&7Permissions: &cNone"));
String permissions = Prison.get().getPlatform().getCapabilities().get(Capability.PERMISSIONS) ?
"&aYes" :
"&cNone";

display.text(Text.tab("&7Permissions: " + permissions));

String economy = Prison.get().getPlatform().getCapabilities().get(Capability.ECONOMY) ?
"&aYes" :
Expand Down
1 change: 0 additions & 1 deletion prison-spigot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
*/

group 'tech.mcprison'
version '3.0.0-SNAPSHOT'

repositories {
mavenCentral()
Expand Down
1 change: 0 additions & 1 deletion prison-sponge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ plugins {
}

group 'tech.mcprison'
version '3.0.0-SNAPSHOT'
description 'An all-in-one Prison plugin.'

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/**
* @author Faizaan A. Datoo
*/
@Plugin(id = "prison-sponge", name = "Prison", description = "An all-in-one solution for a Prison server.", version = "3.0.0", url = "http://mc-prison.tech")
@Plugin(id = "prison-sponge", name = "Prison", description = "An all-in-one solution for a Prison server.", version = "3.1.1.0", url = "http://mc-prison.tech")
public class SpongePrison {

@Inject private Logger logger;
Expand Down

0 comments on commit 772e32f

Please sign in to comment.