mirror of
https://github.com/Aizistral-Studios/No-Chat-Restrictions.git
synced 2026-05-14 21:03:32 +08:00
Add logging to mod constructors
This commit is contained in:
@@ -1,12 +1,14 @@
|
|||||||
package com.aizistral.nochatrestrictions;
|
package com.aizistral.nochatrestrictions;
|
||||||
|
|
||||||
|
import com.aizistral.nochatrestrictions.core.NCRCore;
|
||||||
|
|
||||||
import net.fabricmc.api.ModInitializer;
|
import net.fabricmc.api.ModInitializer;
|
||||||
|
|
||||||
public class NoChatRestrictions implements ModInitializer {
|
public class NoChatRestrictions implements ModInitializer {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onInitialize() {
|
public void onInitialize() {
|
||||||
// NO-OP
|
NCRCore.LOGGER.info("NoChatRestrictions Fabric mod initialized!");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,12 +1,14 @@
|
|||||||
package com.aizistral.nochatrestrictions;
|
package com.aizistral.nochatrestrictions;
|
||||||
|
|
||||||
|
import com.aizistral.nochatrestrictions.core.NCRCore;
|
||||||
|
|
||||||
import net.minecraftforge.fml.common.Mod;
|
import net.minecraftforge.fml.common.Mod;
|
||||||
|
|
||||||
@Mod("nochatrestrictions")
|
@Mod("nochatrestrictions")
|
||||||
public class NoChatRestrictions {
|
public class NoChatRestrictions {
|
||||||
|
|
||||||
public NoChatRestrictions() {
|
public NoChatRestrictions() {
|
||||||
// NO-OP
|
NCRCore.LOGGER.info("NoChatRestrictions Forge mod initialized!");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user