Merge critical issue fixes to stable
This commit is contained in:
parent
4e760a54bc
commit
508d27b896
7 changed files with 237 additions and 32 deletions
|
|
@ -2,6 +2,7 @@ package net.kuraczyk.banhammer.utils;
|
|||
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
import java.net.InetAddress;
|
||||
import java.sql.Timestamp;
|
||||
import java.util.UUID;
|
||||
|
||||
|
|
@ -22,4 +23,28 @@ public class PlayerBan {
|
|||
this.banId = banId;
|
||||
}
|
||||
|
||||
public String getPlayerName() {
|
||||
return playerName;
|
||||
}
|
||||
|
||||
public UUID getPlayerUUID() {
|
||||
return uuid;
|
||||
}
|
||||
|
||||
public String getReason() {
|
||||
return reason;
|
||||
}
|
||||
|
||||
public String getTimeLeft() {
|
||||
return timeLeft;
|
||||
}
|
||||
|
||||
public String getOperator() {
|
||||
return operator;
|
||||
}
|
||||
|
||||
public UUID getBanId() {
|
||||
return banId;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue