mirror of
https://github.com/JonasunderscoreJones/BuildGPT.git
synced 2025-10-23 03:39:18 +02:00
Update with latest template changes
This commit is contained in:
parent
f1f45aca5b
commit
fabfcbbb48
7 changed files with 16 additions and 9 deletions
|
@ -6,10 +6,12 @@ import org.slf4j.Logger;
|
|||
import org.slf4j.LoggerFactory;
|
||||
|
||||
public class ExampleMod implements ModInitializer {
|
||||
public static final String MOD_ID = "modid";
|
||||
|
||||
// This logger is used to write text to the console and the log file.
|
||||
// It is considered best practice to use your mod id as the logger's name.
|
||||
// That way, it's clear which mod wrote info, warnings, and errors.
|
||||
public static final Logger LOGGER = LoggerFactory.getLogger("modid");
|
||||
public static final Logger LOGGER = LoggerFactory.getLogger(MOD_ID);
|
||||
|
||||
@Override
|
||||
public void onInitialize() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue