Skip to content

Commit

Permalink
Fix accidental debug logging
Browse files Browse the repository at this point in the history
:upside_down:
  • Loading branch information
Roadhog360 committed Nov 17, 2024
1 parent 0e29c2a commit 505d7f5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/ganymedes01/etfuturum/EtFuturum.java
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,9 @@ public void displayAllReleventItems(List<ItemStack> list) {

@EventHandler
public void onConstruction(FMLConstructionEvent event) {
Logger.info(Reference.MOD_ID + " is in snapshot mode. Disabling update checker... Other features may also be different.");
if(Reference.SNAPSHOT_BUILD && !Reference.DEV_ENVIRONMENT) {
Logger.info(Reference.MOD_ID + " is in snapshot mode. Disabling update checker... Other features may also be different.");
}

MCLib.init();

Expand Down

0 comments on commit 505d7f5

Please sign in to comment.