mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-14 17:56:34 -04:00
Fix screen turnOn/turnOff return value docs (#3698)
These component method calls actually both return two booleans, but only the first one was documented.
This commit is contained in:
parent
2b0b6f9b9f
commit
690e8d743c
@ -174,14 +174,14 @@ class TextBuffer(val host: EnvironmentHost) extends prefab.ManagedEnvironment wi
|
||||
@Callback(direct = true, doc = """function():boolean -- Returns whether the screen is currently on.""")
|
||||
def isOn(computer: Context, args: Arguments): Array[AnyRef] = result(isDisplaying)
|
||||
|
||||
@Callback(doc = """function():boolean -- Turns the screen on. Returns true if it was off.""")
|
||||
@Callback(doc = """function():boolean -- Turns the screen on. Returns whether the state changed, and whether it is now on.""")
|
||||
def turnOn(computer: Context, args: Arguments): Array[AnyRef] = {
|
||||
val oldPowerState = isDisplaying
|
||||
setPowerState(value = true)
|
||||
result(isDisplaying != oldPowerState, isDisplaying)
|
||||
}
|
||||
|
||||
@Callback(doc = """function():boolean -- Turns off the screen. Returns true if it was on.""")
|
||||
@Callback(doc = """function():boolean -- Turns off the screen. Returns whether the state changed, and whether it is now on.""")
|
||||
def turnOff(computer: Context, args: Arguments): Array[AnyRef] = {
|
||||
val oldPowerState = isDisplaying
|
||||
setPowerState(value = false)
|
||||
|
Loading…
x
Reference in New Issue
Block a user