ItemEvents.modification((event) => {
Ingredient.all.itemIds.forEach((id) => {
event.modify(id, (item) => {
if (item.foodProperties != null) {
item.foodProperties = (properties) => {
properties.alwaysEdible();
};
}
});
});
});
原創2024/11/10小於 1 分鐘