diff options
| author | inglettronald <inglettronald@gmail.com> | 2023-03-21 01:15:45 -0500 |
|---|---|---|
| committer | inglettronald <inglettronald@gmail.com> | 2023-03-21 01:15:45 -0500 |
| commit | e1a4e3db0b3033b4099d77f0bb7d08b60f2c7a73 (patch) | |
| tree | 6e04ef5c15c4c53f38e44981b1660b9e5e0ab667 /src/main/kotlin/dulkirmod/command | |
| parent | d78b2e302f3dd94afb34c62e5fa282a0b10e6bbf (diff) | |
| download | DulkirMod-e1a4e3db0b3033b4099d77f0bb7d08b60f2c7a73.tar.gz DulkirMod-e1a4e3db0b3033b4099d77f0bb7d08b60f2c7a73.tar.bz2 DulkirMod-e1a4e3db0b3033b4099d77f0bb7d08b60f2c7a73.zip | |
dragon stuff and some random things i forget
Diffstat (limited to 'src/main/kotlin/dulkirmod/command')
| -rw-r--r-- | src/main/kotlin/dulkirmod/command/SpawnParticlesCommand.kt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main/kotlin/dulkirmod/command/SpawnParticlesCommand.kt b/src/main/kotlin/dulkirmod/command/SpawnParticlesCommand.kt new file mode 100644 index 0000000..88358a6 --- /dev/null +++ b/src/main/kotlin/dulkirmod/command/SpawnParticlesCommand.kt @@ -0,0 +1,14 @@ +package dulkirmod.command + +import dulkirmod.utils.TextUtils +import net.minecraft.command.ICommandSender + +class SpawnParticlesCommand : ClientCommandBase("sp") { + override fun processCommand(sender: ICommandSender?, args: Array<out String>?) { + TextUtils.sendMessage("/particle flame 84 18 95 1 1 1 1 100") + TextUtils.sendMessage("/particle flame 57 18 125 1 1 1 1 100") + TextUtils.sendMessage("/particle flame 26 18 95 1 1 1 1 100") + TextUtils.sendMessage("/particle flame 27 18 60 1 1 1 1 100") + TextUtils.sendMessage("/particle flame 84 18 56 1 1 1 1 100") + } +}
\ No newline at end of file |
