diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-08-17 17:05:59 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-08-17 17:05:59 +0800 |
| commit | 5c91a6654e697fdadde79508f3ef994936e4b952 (patch) | |
| tree | c2d47385603b038dedcba893a7242bc4c04bb5b3 /src/main/resources | |
| parent | dab398882cd64f6152078f59ba768e4ffd437ba3 (diff) | |
| download | RoughlyEnoughItems-5c91a6654e697fdadde79508f3ef994936e4b952.tar.gz RoughlyEnoughItems-5c91a6654e697fdadde79508f3ef994936e4b952.tar.bz2 RoughlyEnoughItems-5c91a6654e697fdadde79508f3ef994936e4b952.zip | |
Finishing the auto crafting API
Diffstat (limited to 'src/main/resources')
| -rwxr-xr-x | src/main/resources/assets/roughlyenoughitems/lang/en_us.json | 2 | ||||
| -rw-r--r-- | src/main/resources/assets/roughlyenoughitems/lang/zh_tw.json | 2 | ||||
| -rwxr-xr-x | src/main/resources/fabric.mod.json | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/src/main/resources/assets/roughlyenoughitems/lang/en_us.json b/src/main/resources/assets/roughlyenoughitems/lang/en_us.json index 7179fd62d..a948b601c 100755 --- a/src/main/resources/assets/roughlyenoughitems/lang/en_us.json +++ b/src/main/resources/assets/roughlyenoughitems/lang/en_us.json @@ -38,7 +38,7 @@ "ordering.rei.name": "Name", "ordering.rei.item_groups": "Item Groups", "text.auto_craft.move_items": "Move Items", - "error.rei.transfer.too_small": "Unable to move items to a 2x2 grid.", + "error.rei.transfer.too_small": "Unable to move items to a %dx%d grid.", "error.rei.not.on.server": "REI is not on the server.", "error.rei.not.enough.materials": "Not Enough Materials.", "error.rei.internal.error": "Internal Error: %s", diff --git a/src/main/resources/assets/roughlyenoughitems/lang/zh_tw.json b/src/main/resources/assets/roughlyenoughitems/lang/zh_tw.json index 3ce83d898..fab9794c3 100644 --- a/src/main/resources/assets/roughlyenoughitems/lang/zh_tw.json +++ b/src/main/resources/assets/roughlyenoughitems/lang/zh_tw.json @@ -38,7 +38,7 @@ "ordering.rei.name": "名稱", "ordering.rei.item_groups": "物品分類", "text.auto_craft.move_items": "移動物品", - "error.rei.transfer.too_small": "無法移動物品至 2x2 的方格.", + "error.rei.transfer.too_small": "無法移動物品至 %dx%d 的方格.", "error.rei.not.on.server": "REI 不在伺服器上.", "error.rei.not.enough.materials": "不夠材料.", "error.rei.internal.error": "內部錯誤: %s", diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 4d0e71a7d..9417caffb 100755 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -29,6 +29,9 @@ "rei_plugins": [ "me.shedaniel.rei.plugin.DefaultPlugin", "me.shedaniel.rei.plugin.DefaultAutoCraftingPlugin" + ], + "rei_containers": [ + "me.shedaniel.rei.plugin.DefaultServerContainerPlugin" ] }, "depends": { |
