Skip to content

Commit

Permalink
I forgot to remove some code I was testing
Browse files Browse the repository at this point in the history
  • Loading branch information
teitss committed Jun 11, 2017
1 parent 81db7b7 commit 08ce3fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ apply plugin: 'net.minecraftforge.gradle.forge'


group 'com.teits'
version '1.10.2-1.0-SNAPSHOT'
version '1.10.2-v1.2'
archivesBaseName = "PixelMoney"

sourceCompatibility = targetCompatibility = "1.8" // Need this here so eclipse task generates correctly.
Expand Down Expand Up @@ -68,7 +68,7 @@ dependencies {
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
// http://www.gradle.org/docs/current/userguide/dependency_management.html

compile 'org.spongepowered:spongeapi:5.2.0-SNAPSHOT:shaded'
compile 'org.spongepowered:spongeapi:6.0.0-SNAPSHOT:shaded'
compile 'org.spongepowered:spongeforge:1.10.2-2221-5.1.0-BETA-2147'
compile files('depen/pixelmon.jar')
}
Expand Down
12 changes: 3 additions & 9 deletions src/main/java/com/teits/pixelmoney/PixelMoney.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
public class PixelMoney {

public static final String plName = "PixelMoney";
public static final String plVer = "1.1";
public static final String plVer = "1.2";
public static final String plAuthor = "Teits";

@Inject
Expand Down Expand Up @@ -162,15 +162,9 @@ public void onBeat(BeatWildPixelmonEvent event) {
if(toggle.contains(p.getUniqueId())) {
return ;
}else{
/*p.sendMessages(TextSerializers.FORMATTING_CODE.deserialize(config.logmessage
p.sendMessages(TextSerializers.FORMATTING_CODE.deserialize(config.logmessage
.replaceAll("%amount%", config.amount.setScale(2, BigDecimal.ROUND_HALF_DOWN).toString())
.replaceAll("%pokemon%", poke.getPokemonName())));*/
p.sendMessage(Text.of(config.amount));
p.sendMessage(Text.of(config.money));
p.sendMessage(Text.of(config.levelbased));
p.sendMessage(Text.of(config.operationType));
p.sendMessage(Text.of(config.perms));
p.sendMessage(Text.of(config.getWeight(p)));
.replaceAll("%pokemon%", poke.getPokemonName())));
}
}
}
Expand Down

0 comments on commit 08ce3fa

Please sign in to comment.