Move the old stuff out of the way, begin fixing one by one
This commit is contained in:
parent
abfaa02ace
commit
6ccef8275c
1579 changed files with 252390 additions and 76 deletions
19
src/old/java/com/zontreck/events/CommandExecutionEvent.java
Normal file
19
src/old/java/com/zontreck/events/CommandExecutionEvent.java
Normal file
|
@ -0,0 +1,19 @@
|
|||
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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue