Merge remote-tracking branch 'origin/master-MC1.7.10' into master-MC1.12

This commit is contained in:
Adrian Siekierka 2025-04-06 13:47:15 +02:00
commit 7a222b912d
2 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,8 @@
* [#3769] Add default user agent configuration option; change OpenComputers' default user agent to "opencomputers/$version".
* [#3759] Add V1 and V2 to the robot name list. (AutumnalModding)
* [#3727] Fix more regressions related to OpenOS error handling. (jasonS05, kcinnajlol)
* Fix client-side memory leak on anything RedstoneAware (Glease)
## List of contributors
asie, AutumnalModding, jasonS05, kcinnajlol
asie, AutumnalModding, Glease, jasonS05, kcinnajlol

View File

@ -126,7 +126,7 @@ trait RedstoneAware extends RotationAware {
override def validate(): Unit = {
super.validate()
if (!this.isInstanceOf[Tickable]) {
if (!this.isInstanceOf[Tickable] && isServer) {
EventHandler.scheduleServer(() => EnumFacing.values().foreach(updateRedstoneInput))
}
}