fix an oopsie
This commit is contained in:
+27
@@ -0,0 +1,27 @@
|
||||
package com.alttd.velocitychat.events;
|
||||
|
||||
import com.velocitypowered.api.command.CommandSource;
|
||||
|
||||
public class GlobalAdminChatEvent {
|
||||
private final CommandSource sender;
|
||||
private final String uuid;
|
||||
private final String message;
|
||||
|
||||
public GlobalAdminChatEvent(CommandSource sender, String uuid, String message) {
|
||||
this.sender = sender;
|
||||
this.uuid = uuid;
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
public CommandSource getSender() {
|
||||
return sender;
|
||||
}
|
||||
|
||||
public String getUuid() {
|
||||
return uuid;
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user