property cleanup
This commit is contained in:
parent
734279ad95
commit
a836d7a2a5
99 changed files with 564 additions and 731 deletions
|
@ -161,7 +161,7 @@ import common.packet.HPacketHandshake;
|
|||
import common.packet.CPacketAction.Action;
|
||||
import common.potion.Potion;
|
||||
import common.potion.PotionEffect;
|
||||
import common.properties.IProperty;
|
||||
import common.properties.Property;
|
||||
import common.sound.EventType;
|
||||
import common.sound.PositionedSound;
|
||||
import common.util.BlockPos;
|
||||
|
@ -1929,7 +1929,7 @@ public class Client implements IThreadListener {
|
|||
"Schaue auf: " + BlockRegistry.getNameFromBlock(block.getBlock()) + "\n" +
|
||||
String.format("Position: %d %d %d", pos.getX(), pos.getY(), pos.getZ())
|
||||
);
|
||||
for(Entry<IProperty, Comparable> entry : block.getProperties().entrySet()) {
|
||||
for(Entry<Property, Comparable> entry : block.getProperties().entrySet()) {
|
||||
str.append("\n" + entry.getKey().getName() + ": " + entry.getValue().toString());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue