Skip to content

Commit

Permalink
Merge branch 'original' into 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Envel authored and Envel committed Jul 3, 2023
2 parents dc68105 + 8c159d6 commit 8ceae51
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public static boolean consumesPlace(GrimPlayer player, WrappedBlockState state,
if (place.getItemStack().getType() == ItemTypes.GLOWSTONE) {
return true;
}
return player.getInventory().getOffHand().getType() != ItemTypes.GLOWSTONE;
return player.getInventory().getOffHand().getType() == ItemTypes.GLOWSTONE;
}
if (state.getType() == StateTypes.COMMAND_BLOCK || state.getType() == StateTypes.CHAIN_COMMAND_BLOCK ||
state.getType() == StateTypes.REPEATING_COMMAND_BLOCK || state.getType() == StateTypes.JIGSAW
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config/de.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ RotationPlace:
# Prediction-based no slow check
# Grim ist verantwortlich für den fehlerhaften Netcode hier... schwer zu falsen, selbst wenn man Rechtsklick und Offhand-Taste spammt.
# Viel stabiler als andere Anticheats, aber bitte melde alle Falses... Ich habe hier eine Menge Netcode-Probleme behoben.
NoSlow:
NoSlowA:
# Wie viel von einem Offset ist "schummeln"
# Standardmäßig ist dieser Wert niedriger als andere Offs.
# Flags um 0,03-0,2 konsequent mit NoSlow on
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ RotationPlace:
# Prediction-based no slow check
# Grim accounts for buggy netcode here... hard to false even when spamming right click and offhand button
# Much more stable than other anticheats, but please report any falses... I have fixed a ton of netcode issues here.
NoSlow:
NoSlowA:
# How much of an offset is "cheating"
# By default this is lower than other offs
# Flags by 0.03-0.2 consistently with NoSlow on
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config/es.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ RotationPlace:
# clic derecho y la mano secundaria.
# Mucho mas estable que otros anti-cheats, pero por favor reportar todo falso positivo... he arreglado muchos
# problemas del código de red aquí.
NoSlow:
NoSlowA:
# ¿Cuánta debería ser la compensacion como para que se considere trampa?
# Por defecto esto es más bajo que otras compensaciones
# Marca por 0.03-0.2 consistentemente con NoSlow activado
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config/ru.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ RotationPlace:
# Основанная на предсказаниях проверка на отсутствие замедления
# Grim учитывает баги неткода здесь... трудно ошибиться, даже если спамить правым кликом и кнопкой оффхенд.
# Намного стабильнее, чем другие античиты, но, пожалуйста, сообщайте о любых фейлах... Я исправил тонну проблем с неткодом.
NoSlow:
NoSlowA:
# Насколько большое смещение является "читерством".
# По умолчанию это меньше, чем другие смещения
# Флаги на 0.03-0.2 последовательно при включенном NoSlow
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config/zh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ RotationPlace:
# Prediction-based NoSlow 检查
# 在这里解释错误的服务器代码......即使在发送垃圾数据包时右键单击和副手按钮也很分辨
# 比其他反作弊更稳定,但请报告任何错误......我在这里修复了大量的代码问题。
NoSlow:
NoSlowA:
# 有多少偏移量是作弊
# 标志 0.03-0.2 与 NoSlow 一致
threshold: 0.001
Expand Down

0 comments on commit 8ceae51

Please sign in to comment.