Fix stonecutters for Bedrock 1.18

This commit is contained in:
Camotoy 2021-12-08 09:23:23 -05:00
parent ad5a98c859
commit 046c93ffb0
No known key found for this signature in database
GPG Key ID: 7EEFB66FE798081F
2 changed files with 3 additions and 1 deletions

View File

@ -391,6 +391,7 @@ public abstract class InventoryTranslator {
}
break;
}
case CRAFT_RECIPE: // Called by stonecutters 1.18+
case CRAFT_RECIPE_AUTO: // Called by villagers
case CRAFT_NON_IMPLEMENTED_DEPRECATED: // Tends to be called for UI inventories
case CRAFT_RESULTS_DEPRECATED: // Tends to be called for UI inventories

View File

@ -53,7 +53,8 @@ public class StonecutterInventoryTranslator extends AbstractBlockInventoryTransl
@Override
public boolean shouldHandleRequestFirst(StackRequestActionData action, Inventory inventory) {
return action.getType() == StackRequestActionType.CRAFT_NON_IMPLEMENTED_DEPRECATED;
// First is pre-1.18. TODO remove after 1.17.40 support is dropped and refactor stonecutter support to use CraftRecipeStackRequestActionData's recipe ID
return action.getType() == StackRequestActionType.CRAFT_NON_IMPLEMENTED_DEPRECATED || action.getType() == StackRequestActionType.CRAFT_RECIPE;
}
@Override