3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-10-05 01:11:08 +02:00

Fix custom item register message being printed twice

Dieser Commit ist enthalten in:
Camotoy 2022-12-23 12:18:09 -05:00
Ursprung 4b847350b6
Commit ebcb82c7e7
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 7EEFB66FE798081F

Datei anzeigen

@ -104,11 +104,6 @@ public class ItemRegistryPopulator {
CustomItemRegistryPopulator.populate(items, customItems, nonVanillaCustomItems);
}
int customItemCount = customItems.size() + nonVanillaCustomItems.size();
if (customItemCount > 0) {
GeyserImpl.getInstance().getLogger().info("Registered " + customItemCount + " custom items");
}
// We can reduce some operations as Java information is the same across all palette versions
boolean firstMappingsPass = true;
Int2IntMap dyeColors = new FixedInt2IntMap();