mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-11-04 23:53:01 +00:00
Version bumps 'n stuff
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
# Mod properties
|
# Mod properties
|
||||||
mod_version=1.83.1
|
mod_version=1.84.0
|
||||||
|
|
||||||
# Minecraft properties
|
# Minecraft properties
|
||||||
mc_version=1.12.2
|
mc_version=1.12.2
|
||||||
|
|||||||
@@ -109,8 +109,8 @@ public interface ITurtleUpgrade
|
|||||||
* Will only be called for Tool turtle. Called when turtle.dig() or turtle.attack() is called
|
* Will only be called for Tool turtle. Called when turtle.dig() or turtle.attack() is called
|
||||||
* by the turtle, and the tool is required to do some work.
|
* by the turtle, and the tool is required to do some work.
|
||||||
*
|
*
|
||||||
* Conforming implementations should fire {@link BlockEvent.BreakEvent} and {@link TurtleBlockEvent.Dig}for digging,
|
* Conforming implementations should fire {@link BlockEvent.BreakEvent} and {@link TurtleBlockEvent.Dig} for
|
||||||
* {@link AttackEntityEvent} and {@link TurtleAttackEvent} for attacking.
|
* digging, {@link AttackEntityEvent} and {@link TurtleAttackEvent} for attacking.
|
||||||
*
|
*
|
||||||
* @param turtle Access to the turtle that the tool resides on.
|
* @param turtle Access to the turtle that the tool resides on.
|
||||||
* @param side Which side of the turtle (left or right) the tool resides on.
|
* @param side Which side of the turtle (left or right) the tool resides on.
|
||||||
|
|||||||
@@ -1,3 +1,18 @@
|
|||||||
|
New features in CC: Tweaked 1.84.0
|
||||||
|
|
||||||
|
* Improve validation in rename, copy and delete programs
|
||||||
|
* Add window.getLine - the inverse of blit
|
||||||
|
* turtle.refuel no longer consumes more fuel than needed
|
||||||
|
* Add "cc.expect" module, for improved argument type checks
|
||||||
|
* Mount the ROM from all mod jars, not just CC's
|
||||||
|
|
||||||
|
And several bug fixes:
|
||||||
|
* Ensure file error messages use the absolute correct path
|
||||||
|
* Fix NPE when closing a file multiple times.
|
||||||
|
* Do not load chunks when calling writeDescription.
|
||||||
|
* Fix the signature of loadfile
|
||||||
|
* Fix turtles harvesting blocks multiple times
|
||||||
|
|
||||||
# New features in CC: Tweaked 1.83.1
|
# New features in CC: Tweaked 1.83.1
|
||||||
|
|
||||||
* Add several new MOTD messages (JakobDev)
|
* Add several new MOTD messages (JakobDev)
|
||||||
|
|||||||
@@ -1,10 +1,16 @@
|
|||||||
New features in CC: Tweaked 1.83.1
|
New features in CC: Tweaked 1.84.0
|
||||||
|
|
||||||
* Add several new MOTD messages (JakobDev)
|
* Improve validation in rename, copy and delete programs
|
||||||
|
* Add window.getLine - the inverse of blit
|
||||||
|
* turtle.refuel no longer consumes more fuel than needed
|
||||||
|
* Add "cc.expect" module, for improved argument type checks
|
||||||
|
* Mount the ROM from all mod jars, not just CC's
|
||||||
|
|
||||||
And several bug fixes:
|
And several bug fixes:
|
||||||
* Fix type check in `rednet.lookup`
|
* Ensure file error messages use the absolute correct path
|
||||||
* Error if turtle and pocket computer programs are run on the wrong system (JakobDev)
|
* Fix NPE when closing a file multiple times.
|
||||||
* Do not discard varargs after a nil.
|
* Do not load chunks when calling writeDescription.
|
||||||
|
* Fix the signature of loadfile
|
||||||
|
* Fix turtles harvesting blocks multiple times
|
||||||
|
|
||||||
Type "help changelog" to see the full version history.
|
Type "help changelog" to see the full version history.
|
||||||
|
|||||||
@@ -23,3 +23,4 @@ getPosition()
|
|||||||
reposition( x, y, width, height )
|
reposition( x, y, width, height )
|
||||||
getPaletteColor( color )
|
getPaletteColor( color )
|
||||||
setPaletteColor( color, r, g, b )
|
setPaletteColor( color, r, g, b )
|
||||||
|
getLine()
|
||||||
|
|||||||
Reference in New Issue
Block a user