feat: log module toggling
This commit is contained in:
parent
2867df0f51
commit
1d152324f6
1 changed files with 4 additions and 1 deletions
|
@ -1,13 +1,14 @@
|
|||
package co.fantabos.bscv;
|
||||
|
||||
import com.mojang.brigadier.CommandDispatcher;
|
||||
import com.mojang.brigadier.arguments.ArgumentType;
|
||||
|
||||
import net.minecraft.command.CommandSource;
|
||||
import net.minecraft.command.Commands;
|
||||
import net.minecraftforge.common.ForgeConfigSpec;
|
||||
import net.minecraftforge.common.MinecraftForge;
|
||||
|
||||
import static co.fantabos.bscv.BoSCoVicino.log;
|
||||
|
||||
public abstract class Module {
|
||||
public enum Group {
|
||||
CORE,
|
||||
|
@ -53,11 +54,13 @@ public abstract class Module {
|
|||
MinecraftForge.EVENT_BUS.register(this);
|
||||
this.enabled.set(true);
|
||||
this.onEnabled();
|
||||
log(String.format("%s enabled", this.name));
|
||||
}
|
||||
|
||||
public final void disable() {
|
||||
MinecraftForge.EVENT_BUS.unregister(this);
|
||||
this.enabled.set(false);
|
||||
this.onDisabled();
|
||||
log(String.format("%s disabled", this.name));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue