diff options
| author | shedaniel <daniel@shedaniel.me> | 2023-10-24 00:26:03 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2023-10-24 00:26:03 +0800 |
| commit | 3a6f6fc734603ce2b5540908bb23d87ee8a59913 (patch) | |
| tree | 4b482174001b6e7fcffbd50da8f2c2d875741f47 /runtime/src/main/java/me/shedaniel/rei/impl | |
| parent | 120e6ea190a342e367e7c26b77d22b057091af84 (diff) | |
| download | RoughlyEnoughItems-3a6f6fc734603ce2b5540908bb23d87ee8a59913.tar.gz RoughlyEnoughItems-3a6f6fc734603ce2b5540908bb23d87ee8a59913.tar.bz2 RoughlyEnoughItems-3a6f6fc734603ce2b5540908bb23d87ee8a59913.zip | |
Rewrite how creative mode tab items are collected
Diffstat (limited to 'runtime/src/main/java/me/shedaniel/rei/impl')
| -rw-r--r-- | runtime/src/main/java/me/shedaniel/rei/impl/common/entry/type/EntryRegistryImpl.java | 2 |
1 files changed, 2 insertions, 0 deletions
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 |
