diff options
| author | Danielshe <shekwancheung0528@gmail.com> | 2019-09-12 22:55:23 +0800 |
|---|---|---|
| committer | Danielshe <shekwancheung0528@gmail.com> | 2019-09-12 22:55:23 +0800 |
| commit | a0d73236a41144009d5b469cb7dbcc29d82eb103 (patch) | |
| tree | ae36292b51b3144a3c025b2dd786f669f02e2205 /src | |
| parent | d1f620a845d3b0bf1cf4f226b2beb723507aafa4 (diff) | |
| parent | f10e2f722b85015569275fe6201a565c4d4455a2 (diff) | |
| download | RoughlyEnoughItems-a0d73236a41144009d5b469cb7dbcc29d82eb103.tar.gz RoughlyEnoughItems-a0d73236a41144009d5b469cb7dbcc29d82eb103.tar.bz2 RoughlyEnoughItems-a0d73236a41144009d5b469cb7dbcc29d82eb103.zip | |
Merge remote-tracking branch 'origin/3.x' into 3.x
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCore.java | 2 | ||||
| -rwxr-xr-x | src/main/resources/fabric.mod.json | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCore.java b/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCore.java index 077cce647..768c97dbd 100644 --- a/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCore.java +++ b/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCore.java @@ -205,7 +205,7 @@ public class RoughlyEnoughItemsCore implements ClientModInitializer { final Identifier recipeButtonTex = new Identifier("textures/gui/recipe_button.png"); AtomicLong lastSync = new AtomicLong(-1); ClothClientHooks.SYNC_RECIPES.register((minecraftClient, recipeManager, synchronizeRecipesS2CPacket) -> { - if (lastSync.get() > 0 && System.currentTimeMillis() - lastSync.get() > 5000) { + if (lastSync.get() > 0 && System.currentTimeMillis() - lastSync.get() <= 5000) { RoughlyEnoughItemsCore.LOGGER.warn("[REI] Suppressing Sync Recipes!"); return; } diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 141ab48f8..632df23b3 100755 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -46,7 +46,7 @@ "custom": { "rei:translators": { "English": "Danielshe", - "Japanese": "swordglowsblue", + "Japanese": ["swordglowsblue", "hinataaki"], "Simplified Chinese": ["XuyuEre", "Danielshe"], "Traditional Chinese": ["hugoalh", "gxy17886", "Danielshe"], "French": "Yanis48", @@ -56,7 +56,8 @@ "LOLCAT": "Danielshe", "Upside Down English": "Danielshe", "Brazilian Portuguese": ["thiagokenis", "joaoh1"], - "Bulgarian": "geniiii" + "Bulgarian": "geniiii", + "Russian": "MrYonter" } } } |
