Bump development to 1.17, Added a few more light emitting blocks, Improved PlayerChatEvent formatting

This commit is contained in:
LOOHP
2021-06-13 00:56:41 +08:00
parent c6ac7b3593
commit edbc668fa2
19 changed files with 100755 additions and 67995 deletions
@@ -5,23 +5,23 @@ import com.loohp.limbo.player.Player;
public class PlayerChatEvent extends PlayerEvent implements Cancellable {
private String prefix;
private String format;
private String message;
private boolean cancelled;
public PlayerChatEvent(Player player, String prefix, String message, boolean cancelled) {
public PlayerChatEvent(Player player, String format, String message, boolean cancelled) {
super(player);
this.prefix = prefix;
this.format = format;
this.message = message;
this.cancelled = cancelled;
}
public String getPrefix() {
return prefix;
public String getFormat() {
return format;
}
public void setPrefix(String prefix) {
this.prefix = prefix;
public void setFormat(String format) {
this.format = format;
}
public String getMessage() {