1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-11-07 08:52:59 +00:00

Bump Forge to 1.14.3

Guess it's time for another release?
This commit is contained in:
SquidDev
2019-06-26 08:25:32 +01:00
parent f1e551b960
commit 6ea8ca991b
6 changed files with 11 additions and 10 deletions

View File

@@ -22,6 +22,7 @@ import net.minecraft.util.math.Vec3d;
import net.minecraft.util.text.ITextComponent;
import net.minecraft.util.text.StringTextComponent;
import net.minecraft.util.text.TranslationTextComponent;
import net.minecraft.world.GameRules;
import net.minecraft.world.ServerWorld;
import javax.annotation.Nonnull;
@@ -63,7 +64,7 @@ public class TileCommandComputer extends TileComputer
@Override
public boolean shouldReceiveFeedback()
{
return getWorld().getGameRules().getBoolean( "sendCommandFeedback" );
return getWorld().getGameRules().getBoolean( GameRules.SEND_COMMAND_FEEDBACK );
}
@Override
@@ -75,7 +76,7 @@ public class TileCommandComputer extends TileComputer
@Override
public boolean allowLogging()
{
return getWorld().getGameRules().getBoolean( "commandBlockOutput" );
return getWorld().getGameRules().getBoolean( GameRules.COMMAND_BLOCK_OUTPUT );
}
}

View File

@@ -416,7 +416,7 @@ public abstract class TileComputerBase extends TileGeneric implements IComputerT
{
return hasCustomName()
? new StringTextComponent( label )
: new TranslationTextComponent(getBlockState().getBlock().getTranslationKey());
: new TranslationTextComponent( getBlockState().getBlock().getTranslationKey() );
}
@Override

View File

@@ -581,7 +581,7 @@ public final class TileDiskDrive extends TileGeneric implements DefaultInventory
@Override
public ITextComponent getName()
{
return customName != null ? customName : new TranslationTextComponent(getBlockState().getBlock().getTranslationKey());
return customName != null ? customName : new TranslationTextComponent( getBlockState().getBlock().getTranslationKey() );
}
@Nonnull

View File

@@ -574,7 +574,7 @@ public final class TilePrinter extends TileGeneric implements DefaultSidedInvent
@Override
public ITextComponent getName()
{
return customName != null ? customName : new TranslationTextComponent(getBlockState().getBlock().getTranslationKey());
return customName != null ? customName : new TranslationTextComponent( getBlockState().getBlock().getTranslationKey() );
}
@Override