1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-10-31 23:26:19 +00:00

Merge branch 'mc-1.14.x' into mc-1.15.x

This commit is contained in:
SquidDev 2020-06-21 12:09:28 +01:00
commit 1efabccd14
4 changed files with 8 additions and 11 deletions

View File

@ -1,5 +1,5 @@
# Mod properties # Mod properties
mod_version=1.89.0 mod_version=1.89.1
# Minecraft properties (update mods.toml when changing) # Minecraft properties (update mods.toml when changing)
mc_version=1.15.2 mc_version=1.15.2

View File

@ -170,7 +170,7 @@ public class TileEntityMonitorRenderer extends TileEntityRenderer<TileMonitor>
} }
ByteBuffer monitorBuffer = tboContents; ByteBuffer monitorBuffer = tboContents;
monitorBuffer.position( 0 ); monitorBuffer.clear();
for( int y = 0; y < height; y++ ) for( int y = 0; y < height; y++ )
{ {
TextBuffer text = terminal.getLine( y ), textColour = terminal.getTextColourLine( y ), background = terminal.getBackgroundColourLine( y ); TextBuffer text = terminal.getLine( y ), textColour = terminal.getTextColourLine( y ), background = terminal.getBackgroundColourLine( y );

View File

@ -1,3 +1,7 @@
# New features in CC: Tweaked 1.89.1
* Fix crashes when rendering monitors of varying sizes.
# New features in CC: Tweaked 1.89.0 # New features in CC: Tweaked 1.89.0
* Compress monitor data, reducing network traffic by a significant amount. * Compress monitor data, reducing network traffic by a significant amount.

View File

@ -1,12 +1,5 @@
New features in CC: Tweaked 1.89.0 New features in CC: Tweaked 1.89.1
* Compress monitor data, reducing network traffic by a significant amount. * Fix crashes when rendering monitors of varying sizes.
* Allow limiting the bandwidth monitor updates use.
* Several optimisations to monitor rendering (@Lignum).
* Expose block and item tags to turtle.inspect and turtle.getItemDetail.
And several bug fixes:
* Fix settings.load failing on defined settings.
* Fix name of the `ejectDisk` peripheral method.
Type "help changelog" to see the full version history. Type "help changelog" to see the full version history.