Skip to content

Commit 078fbe7

Browse files
committed
Merge remote-tracking branch 'origin/master-MC1.7.10' into master-MC1.12
2 parents 24086c4 + 49b128e commit 078fbe7

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ dependencies {
214214
embedded name: 'OC-JNLua', version: '20230530.0', ext: 'jar'
215215
embedded name: 'OC-JNLua-Natives', version: '20220928.1', ext: 'jar'
216216

217-
testImplementation("junit:junit:4.13")
217+
testImplementation("junit:junit:4.13.2")
218218
testImplementation("org.mockito:mockito-all:1.10.19")
219219
testImplementation("org.scalactic:scalactic_2.11:2.2.6")
220220
testImplementation("org.scalatest:scalatest_2.11:2.2.6")

changelog.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
## Fixes/improvements
22

3-
* [#3769] Add default user agent configuration option; change OpenComputers' default user agent to "opencomputers/$version".
4-
* [#3759] Add V1 and V2 to the robot name list. (AutumnalModding)
5-
* [#3727] Fix more regressions related to OpenOS error handling. (jasonS05, kcinnajlol)
6-
* Fix client-side memory leak on anything RedstoneAware (Glease)
3+
* [#3764] Fix left and right names being swapped in the Rack GUI
4+
* [#3779] Fix `os.sleep(0)` causing `too long without yielding` (Ocawesome101)
5+
* (1.12) [#3774] Fix Jukebox driver (kebufu)
76

87
## List of contributors
98

10-
asie, AutumnalModding, Glease, jasonS05, kcinnajlol
9+
asie, kebufu, Ocawesome101

src/main/scala/li/cil/oc/client/gui/Rack.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ class Rack(playerInventory: InventoryPlayer, val rack: tileentity.Rack) extends
8484
def sideName(side: EnumFacing) = side match {
8585
case EnumFacing.UP => Localization.Rack.Top
8686
case EnumFacing.DOWN => Localization.Rack.Bottom
87-
case EnumFacing.EAST => Localization.Rack.Left
88-
case EnumFacing.WEST => Localization.Rack.Right
87+
case EnumFacing.WEST => Localization.Rack.Left
88+
case EnumFacing.EAST => Localization.Rack.Right
8989
case EnumFacing.NORTH => Localization.Rack.Back
9090
case _ => Localization.Rack.None
9191
}

0 commit comments

Comments
 (0)