fix an oopsie

This commit is contained in:
destro174
2021-12-11 19:35:35 +01:00
parent b183c369d2
commit ce071841a2
11 changed files with 32 additions and 50 deletions
@@ -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;
}
}