19 lines
377 B
Java
19 lines
377 B
Java
package com.zontreck.events;
|
|
|
|
import java.util.UUID;
|
|
|
|
import net.minecraft.world.entity.player.Player;
|
|
import net.neoforged.bus.api.Event;
|
|
|
|
|
|
public class CommandExecutionEvent extends Event {
|
|
|
|
public UUID playerID;
|
|
public String command;
|
|
|
|
public CommandExecutionEvent(Player player, String cmd)
|
|
{
|
|
playerID=player.getUUID();
|
|
command=cmd;
|
|
}
|
|
}
|