From 3a6f6fc734603ce2b5540908bb23d87ee8a59913 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Tue, 24 Oct 2023 00:26:03 +0800 Subject: Rewrite how creative mode tab items are collected --- .../java/me/shedaniel/rei/impl/common/entry/type/EntryRegistryImpl.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'runtime/src/main/java/me/shedaniel/rei/impl') diff --git a/runtime/src/main/java/me/shedaniel/rei/impl/common/entry/type/EntryRegistryImpl.java b/runtime/src/main/java/me/shedaniel/rei/impl/common/entry/type/EntryRegistryImpl.java index c756205e3..6e463d728 100644 --- a/runtime/src/main/java/me/shedaniel/rei/impl/common/entry/type/EntryRegistryImpl.java +++ b/runtime/src/main/java/me/shedaniel/rei/impl/common/entry/type/EntryRegistryImpl.java @@ -65,7 +65,9 @@ public class EntryRegistryImpl implements EntryRegistry { @Override public void acceptPlugin(REIClientPlugin plugin) { + int size = size(); plugin.registerEntries(this); + InternalLogger.getInstance().trace("Registered %d entries from plugin %s", size() - size, plugin.getPluginProviderName()); } @Override -- cgit