Skip to content

Commit

Permalink
first
Browse files Browse the repository at this point in the history
  • Loading branch information
angushushu committed Nov 11, 2023
1 parent 87827a4 commit 41678c9
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .idea/vcs.xml

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

2 changes: 2 additions & 0 deletions src/main/java/org/cubexmc/ecobalancer/EcoBalancer.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import org.bukkit.plugin.java.JavaPlugin;
import org.cubexmc.ecobalancer.commands.CheckAllCommand;
import org.cubexmc.ecobalancer.commands.CheckPlayerCommand;
import org.cubexmc.ecobalancer.commands.HelpCommand;

import java.util.UUID;
import java.util.Calendar;
Expand Down Expand Up @@ -43,6 +44,7 @@ public void onEnable() {
deductionPercentage = getConfig().getDouble("deduction-percentage", 1);
inactiveDaysToClear = getConfig().getInt("inactive-days-to-clear", 500);

getCommand("help").setExecutor(new HelpCommand());
getCommand("checkall").setExecutor(new CheckAllCommand(this));
getCommand("checkplayer").setExecutor(new CheckPlayerCommand(this));
getLogger().info("EcoBalancer enabled!");
Expand Down
Binary file modified target/EcoBalancer-1.0-SNAPSHOT.jar
Binary file not shown.
Binary file modified target/classes/org/cubexmc/ecobalancer/EcoBalancer$1.class
Binary file not shown.
Binary file modified target/classes/org/cubexmc/ecobalancer/EcoBalancer.class
Binary file not shown.
Binary file modified target/original-EcoBalancer-1.0-SNAPSHOT.jar
Binary file not shown.

0 comments on commit 41678c9

Please sign in to comment.