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