aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCore.java2
-rwxr-xr-xsrc/main/resources/fabric.mod.json5
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"
}
}
}