From 8e06e4bcb01efc2d071348c6bc7f94d2b6d5cffd Mon Sep 17 00:00:00 2001 From: Mrbysco Date: Wed, 16 Oct 2024 23:10:41 +0200 Subject: [PATCH] Remove removed Smiley Cloud tile entity class --- .../mod/tile/TileEntitySmileyCloud.java | 61 ------------------- 1 file changed, 61 deletions(-) delete mode 100644 src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntitySmileyCloud.java diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntitySmileyCloud.java b/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntitySmileyCloud.java deleted file mode 100644 index 610f02260..000000000 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntitySmileyCloud.java +++ /dev/null @@ -1,61 +0,0 @@ -// TODO: [port][note]: Not used -///* -// * This file ("TileEntitySmileyCloud.java") is part of the Actually Additions mod for Minecraft. -// * It is created and owned by Ellpeck and distributed -// * under the Actually Additions License to be found at -// * http://ellpeck.de/actaddlicense -// * View the source code at https://github.com/Ellpeck/ActuallyAdditions -// * -// * © 2015-2017 Ellpeck -// */ -// -//package de.ellpeck.actuallyadditions.mod.tile; -// -//import de.ellpeck.actuallyadditions.mod.network.gui.IStringReactor; -//import net.minecraft.entity.player.PlayerEntity; -//import net.minecraft.nbt.CompoundNBT; -// -//public class TileEntitySmileyCloud extends TileEntityBase implements IStringReactor { -// -// public String name; -// private String nameBefore; -// -// public TileEntitySmileyCloud() { -// super("smileyCloud"); -// } -// -// @Override -// public void writeSyncableNBT(CompoundNBT compound, NBTType type) { -// super.writeSyncableNBT(compound, lookupProvider, type); -// if (this.name != null && type != NBTType.SAVE_BLOCK) { -// compound.setString("Name", this.name); -// } -// } -// -// @Override -// public void readSyncableNBT(CompoundNBT compound, NBTType type) { -// super.readSyncableNBT(compound, lookupProvider, type); -// if (type != NBTType.SAVE_BLOCK) { -// this.name = compound.getString("Name"); -// } -// } -// -// @Override -// public void updateEntity() { -// super.updateEntity(); -// if (!this.world.isRemote) { -// boolean nameChanged = this.name != null -// ? !this.name.equals(this.nameBefore) -// : this.nameBefore != null; -// if (nameChanged && this.sendUpdateWithInterval()) { -// this.nameBefore = this.name; -// this.markDirty(); -// } -// } -// } -// -// @Override -// public void onTextReceived(String text, int textID, PlayerEntity player) { -// this.name = text; -// } -//}