diff options
| author | Ascynx <78341107+Ascynx@users.noreply.github.com> | 2022-09-22 20:56:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-22 20:56:44 +0200 |
| commit | 005f9ef89baa3bde63fcfc188359034606506550 (patch) | |
| tree | 7aedd854beff3dcd04eaaf3601f3629d86b10d3e /src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java | |
| parent | 2d9bf47ca3a61fee56d3a52f56ee0daca626a9c8 (diff) | |
| download | notenoughupdates-005f9ef89baa3bde63fcfc188359034606506550.tar.gz notenoughupdates-005f9ef89baa3bde63fcfc188359034606506550.tar.bz2 notenoughupdates-005f9ef89baa3bde63fcfc188359034606506550.zip | |
Fixed searchString issue (#289)
Co-authored-by: nea <romangraef@gmail.com>
Co-authored-by: Roman / Nea <roman.graef@gmail.com>
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java b/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java index c4b1bd77..b06f2ab2 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java @@ -99,6 +99,8 @@ import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; import net.minecraftforge.fml.common.gameevent.TickEvent; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; import java.awt.*; import java.io.BufferedReader; @@ -119,6 +121,8 @@ public class NotEnoughUpdates { public static final int VERSION_ID = 20100; public static final int PRE_VERSION_ID = 0; public static final int HOTFIX_VERSION_ID = 0; + + public static final Logger LOGGER = LogManager.getLogger("NotEnoughUpdates"); /** * Registers the biomes for the crystal hollows here so optifine knows they exists */ |
