mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-11-23 07:16:39 +01:00
Remove debug code
This commit is contained in:
parent
dd8a7a7edd
commit
293102e60d
1 changed files with 0 additions and 6 deletions
|
@ -110,9 +110,6 @@ public class JavaRecipeBookAddTranslator extends PacketTranslator<ClientboundRec
|
|||
for (int i = 0; i < left.size(); i++) {
|
||||
List<ItemDescriptorWithCount> inputs = left.get(i);
|
||||
String recipeId = contents.id() + "_" + i;
|
||||
if (recipeId.equals("1318_0")) {
|
||||
System.out.println(display);
|
||||
}
|
||||
int recipeNetworkId = netId++;
|
||||
craftingDataPacket.getCraftingData().add(ShapedRecipeData.shaped(recipeId,
|
||||
shapedRecipe.width(), shapedRecipe.height(), inputs,
|
||||
|
@ -274,9 +271,6 @@ public class JavaRecipeBookAddTranslator extends PacketTranslator<ClientboundRec
|
|||
// Implementation note: ItemData#isValid() may return true for air because count might be > 0 and the air definition may not be ItemDefinition.AIR
|
||||
return null;
|
||||
}
|
||||
if (pair.left() == Items.PALE_OAK_TRAPDOOR) {
|
||||
System.out.println(pair.right());
|
||||
}
|
||||
|
||||
ItemData output = pair.right();
|
||||
if (!(pair.left() instanceof BedrockRequiresTagItem)) {
|
||||
|
|
Loading…
Reference in a new issue