Archived
0

переименование серверных событий

This commit is contained in:
2018-08-17 11:05:25 +03:00
parent 480a117269
commit aafe91a896
3 changed files with 3 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ import java.net.SocketAddress;
@RequiredArgsConstructor
@Getter
@Setter
public class LoginEvent extends EventBase {
public class SC_LoginEvent extends EventBase {
private String playerName;
private final SocketAddress remoteAddress;
private boolean deny;

View File

@@ -14,7 +14,7 @@ import mc.core.player.Player;
@RequiredArgsConstructor
@Getter
@Setter
public class PlayerLookEvent extends EventBase {
public class SC_PlayerLookEvent extends EventBase {
private final Player player;
private EntityLocation newLook;
}

View File

@@ -14,7 +14,7 @@ import java.net.SocketAddress;
@RequiredArgsConstructor
@Getter
@Setter
public class ServerPingEvent extends EventBase {
public class SC_ServerPingEvent extends EventBase {
private final SocketAddress remoteAddress;
private String description;
private int online;