Skip to content

Commit

Permalink
Removed useless tag log in onInitialize, this will not get pushed to …
Browse files Browse the repository at this point in the history
…release since it does not affect any gameplay.
  • Loading branch information
MrGII committed Jul 29, 2024
1 parent be61cc6 commit 9ebc231
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main/java/github/mrgii/itemsstack/ItemsStack.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import net.fabricmc.api.ModInitializer;

import net.fabricmc.fabric.api.event.lifecycle.v1.ServerLifecycleEvents;
import net.fabricmc.fabric.api.tag.convention.v2.ConventionalItemTags;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand All @@ -15,12 +14,9 @@ public class ItemsStack implements ModInitializer {

@Override
public void onInitialize() {
String tagName = ConventionalItemTags.TOOLS.getName().getString();
LOGGER.info(tagName);
ServerLifecycleEvents.SERVER_STARTED.register((minecraftServer) -> {
ItemsStackSizeModifier.updateValuesAndModifyStackSizes();
ItemsStackSizeModifier.registerCallbacks();
});

}
}

0 comments on commit 9ebc231

Please sign in to comment.