mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-09 15:25:56 -04:00
Merge remote-tracking branch 'origin/master-MC1.7.10' into master-MC1.12
This commit is contained in:
commit
078fbe7ab0
@ -214,7 +214,7 @@ dependencies {
|
|||||||
embedded name: 'OC-JNLua', version: '20230530.0', ext: 'jar'
|
embedded name: 'OC-JNLua', version: '20230530.0', ext: 'jar'
|
||||||
embedded name: 'OC-JNLua-Natives', version: '20220928.1', ext: 'jar'
|
embedded name: 'OC-JNLua-Natives', version: '20220928.1', ext: 'jar'
|
||||||
|
|
||||||
testImplementation("junit:junit:4.13")
|
testImplementation("junit:junit:4.13.2")
|
||||||
testImplementation("org.mockito:mockito-all:1.10.19")
|
testImplementation("org.mockito:mockito-all:1.10.19")
|
||||||
testImplementation("org.scalactic:scalactic_2.11:2.2.6")
|
testImplementation("org.scalactic:scalactic_2.11:2.2.6")
|
||||||
testImplementation("org.scalatest:scalatest_2.11:2.2.6")
|
testImplementation("org.scalatest:scalatest_2.11:2.2.6")
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
## Fixes/improvements
|
## Fixes/improvements
|
||||||
|
|
||||||
* [#3769] Add default user agent configuration option; change OpenComputers' default user agent to "opencomputers/$version".
|
* [#3764] Fix left and right names being swapped in the Rack GUI
|
||||||
* [#3759] Add V1 and V2 to the robot name list. (AutumnalModding)
|
* [#3779] Fix `os.sleep(0)` causing `too long without yielding` (Ocawesome101)
|
||||||
* [#3727] Fix more regressions related to OpenOS error handling. (jasonS05, kcinnajlol)
|
* (1.12) [#3774] Fix Jukebox driver (kebufu)
|
||||||
* Fix client-side memory leak on anything RedstoneAware (Glease)
|
|
||||||
|
|
||||||
## List of contributors
|
## List of contributors
|
||||||
|
|
||||||
asie, AutumnalModding, Glease, jasonS05, kcinnajlol
|
asie, kebufu, Ocawesome101
|
||||||
|
@ -84,8 +84,8 @@ class Rack(playerInventory: InventoryPlayer, val rack: tileentity.Rack) extends
|
|||||||
def sideName(side: EnumFacing) = side match {
|
def sideName(side: EnumFacing) = side match {
|
||||||
case EnumFacing.UP => Localization.Rack.Top
|
case EnumFacing.UP => Localization.Rack.Top
|
||||||
case EnumFacing.DOWN => Localization.Rack.Bottom
|
case EnumFacing.DOWN => Localization.Rack.Bottom
|
||||||
case EnumFacing.EAST => Localization.Rack.Left
|
case EnumFacing.WEST => Localization.Rack.Left
|
||||||
case EnumFacing.WEST => Localization.Rack.Right
|
case EnumFacing.EAST => Localization.Rack.Right
|
||||||
case EnumFacing.NORTH => Localization.Rack.Back
|
case EnumFacing.NORTH => Localization.Rack.Back
|
||||||
case _ => Localization.Rack.None
|
case _ => Localization.Rack.None
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user