Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Ursprung
633965fcd5
Commit
f204fff777
@ -133,7 +133,7 @@ public class Recording implements Listener {
|
|||||||
return packet;
|
return packet;
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler(priority = EventPriority.HIGH, ignoreCancelled = true)
|
@EventHandler(priority = EventPriority.HIGH)
|
||||||
public void onPlayerMove(PlayerMoveEvent e){
|
public void onPlayerMove(PlayerMoveEvent e){
|
||||||
if(isNotSent(e.getPlayer()))
|
if(isNotSent(e.getPlayer()))
|
||||||
return;
|
return;
|
||||||
@ -160,7 +160,7 @@ public class Recording implements Listener {
|
|||||||
@EventHandler(priority = EventPriority.HIGH, ignoreCancelled = true)
|
@EventHandler(priority = EventPriority.HIGH, ignoreCancelled = true)
|
||||||
public void onBlockPhysics(BlockPhysicsEvent e){
|
public void onBlockPhysics(BlockPhysicsEvent e){
|
||||||
if(FlatteningWrapper.impl.doRecord(e))
|
if(FlatteningWrapper.impl.doRecord(e))
|
||||||
GlobalRecorder.getInstance().blockChange(e.getBlock()); //TODO ?
|
GlobalRecorder.getInstance().blockChange(e.getBlock());
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler(priority = EventPriority.HIGH, ignoreCancelled = true)
|
@EventHandler(priority = EventPriority.HIGH, ignoreCancelled = true)
|
||||||
|
@ -364,7 +364,7 @@ public class PacketProcessor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void sound() throws IOException {
|
private void sound() throws IOException {
|
||||||
int rawX = source.readInt() - arenaMinX + Config.ArenaRegion.getMinX();
|
int rawX = source.readInt() - arenaMinX;
|
||||||
int y = source.readInt() - arenaMinY + Config.BluePasteRegion.getMinY();
|
int y = source.readInt() - arenaMinY + Config.BluePasteRegion.getMinY();
|
||||||
int rawZ = source.readInt() - arenaMinZ;
|
int rawZ = source.readInt() - arenaMinZ;
|
||||||
|
|
||||||
|
@ -144,6 +144,7 @@ public class REntity {
|
|||||||
|
|
||||||
this.uuid = user.getUUID();
|
this.uuid = user.getUUID();
|
||||||
this.name = user.getUserName();
|
this.name = user.getUserName();
|
||||||
|
System.out.println(name + " joins");
|
||||||
entities.put(internalId, this);
|
entities.put(internalId, this);
|
||||||
|
|
||||||
ProtocolAPI.broadcastPacket(getPlayerInfoPacket());
|
ProtocolAPI.broadcastPacket(getPlayerInfoPacket());
|
||||||
@ -169,6 +170,11 @@ public class REntity {
|
|||||||
this.yaw = (byte)((int)(yaw * 256.0F / 360.0F));
|
this.yaw = (byte)((int)(yaw * 256.0F / 360.0F));
|
||||||
this.pitch = (byte)((int)(pitch * 256.0F / 360.0F));
|
this.pitch = (byte)((int)(pitch * 256.0F / 360.0F));
|
||||||
this.headYaw = headYaw;
|
this.headYaw = headYaw;
|
||||||
|
|
||||||
|
if(entityType == EntityType.PLAYER) {
|
||||||
|
System.out.println("Player moves " + locX + " " + locY + " " + locZ);
|
||||||
|
}
|
||||||
|
|
||||||
ProtocolAPI.broadcastPacket(getTeleportPacket());
|
ProtocolAPI.broadcastPacket(getTeleportPacket());
|
||||||
ProtocolAPI.broadcastPacket(getHeadRotationPacket());
|
ProtocolAPI.broadcastPacket(getHeadRotationPacket());
|
||||||
}
|
}
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren