fix: name clash! how fun
This commit is contained in:
parent
ced8ae36ee
commit
c207cdbfb4
2 changed files with 5 additions and 5 deletions
|
@ -33,7 +33,7 @@ public class BoSCoVicino {
|
|||
|
||||
public static Minecraft minecraft;
|
||||
|
||||
public static List<Mod> mods;
|
||||
public static List<co.fantabos.bscv.Mod> mods;
|
||||
|
||||
public BoSCoVicino() {
|
||||
// Register the setup method for modloading
|
||||
|
@ -52,9 +52,9 @@ public class BoSCoVicino {
|
|||
ForgeConfigSpec.Builder builder = new ForgeConfigSpec.Builder();
|
||||
|
||||
// load and register mods
|
||||
BoSCoVicino.mods = new ArrayList<Mod>();
|
||||
BoSCoVicino.mods = new ArrayList<co.fantabos.bscv.Mod>();
|
||||
|
||||
BoSCoVicino.mods.add((Mod) new Fullbright(builder));
|
||||
BoSCoVicino.mods.add(new Fullbright(builder));
|
||||
|
||||
ForgeConfigSpec spec = builder.build();
|
||||
|
||||
|
@ -90,7 +90,7 @@ public class BoSCoVicino {
|
|||
|
||||
@SubscribeEvent
|
||||
public void onRegisterCommand(RegisterCommandsEvent event) {
|
||||
for (Mod mod : BoSCoVicino.mods) {
|
||||
for (co.fantabos.bscv.Mod mod : BoSCoVicino.mods) {
|
||||
mod.registerCommands(event.getDispatcher());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ public abstract class Mod {
|
|||
.define("enabled", false);
|
||||
}
|
||||
|
||||
protected void registerCommand(CommandDispatcher<CommandSource> dispatcher) {
|
||||
public void registerCommands(CommandDispatcher<CommandSource> dispatcher) {
|
||||
dispatcher.register(
|
||||
Commands.literal(this.name.toLowerCase())
|
||||
.then(
|
||||
|
|
Loading…
Reference in a new issue