3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-10-03 08:21:06 +02:00

Use load for sniffer_food because of ViaVersion

Dieser Commit ist enthalten in:
Konicai 2023-05-17 16:43:42 -04:00
Ursprung 5cf5225c0c
Commit 4d8cb709da

Datei anzeigen

@ -102,7 +102,7 @@ public class TagCache {
this.foxFood = IntList.of(itemTags.get("minecraft:fox_food"));
this.piglinLoved = IntList.of(itemTags.get("minecraft:piglin_loved"));
this.smallFlowers = IntList.of(itemTags.get("minecraft:small_flowers"));
this.snifferFood = IntList.of(itemTags.get("minecraft:sniffer_food"));
this.snifferFood = load(itemTags.get("minecraft:sniffer_food"));
// Hack btw
boolean emulatePost1_13Logic = itemTags.get("minecraft:signs").length > 1;