Skip to content
This repository was archived by the owner on Jan 1, 2018. It is now read-only.

Commit

Permalink
This is RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
Perksey committed Feb 2, 2017
1 parent 2f968fa commit bcd5c1e
Show file tree
Hide file tree
Showing 5 changed files with 135 additions and 48 deletions.
175 changes: 131 additions & 44 deletions .idea/workspace.xml

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 @@ -16,7 +16,7 @@ plugins {
}

group 'tech.mcprison.prison'
version '3.0.0-RC'
version '3.0.0-RC2'

apply plugin: 'java'
apply plugin: 'maven'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tech/mcprison/prison/mines/Mines.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* Created by DMP9 on 08/01/2017.
*/
public class Mines extends Module {
public static final String JENKINS_BUILD = "70";
public static final String JENKINS_BUILD = "78";
public static boolean DEVELOPMENT_BUILD = false;

private static Mines i = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*/
public class MinesUtil {
public static String addPrefix(String message){
return String.join(Mines.get().getMinesMessages().prefix + message);
return Mines.get().getMinesMessages().prefix + message;
}
public static Optional<Miner> getMiner(Player player) {
for (Miner miner : Mines.get().getPlayers()) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ name: PrisonMines
version: "${version}"
main: tech.mcprison.prison.mines.plugins.MinesSpigot
depend: [Prison]
description: A ranks module for Prison.
description: A mines module for Prison.
author: The MC-Prison Team
website: https://mc-prison.tech

0 comments on commit bcd5c1e

Please sign in to comment.