feat: add /mod teleport

This commit is contained in:
Evan Carroll 2026-01-20 22:40:29 -06:00
parent 45a7e44b3a
commit 3da420fe59
3 changed files with 113 additions and 13 deletions

View file

@ -227,6 +227,7 @@ pub enum ActionType {
MessageDeletion,
Summon,
SummonAll,
Teleport,
}
impl std::fmt::Display for ActionType {
@ -241,6 +242,7 @@ impl std::fmt::Display for ActionType {
ActionType::MessageDeletion => write!(f, "message_deletion"),
ActionType::Summon => write!(f, "summon"),
ActionType::SummonAll => write!(f, "summon_all"),
ActionType::Teleport => write!(f, "teleport"),
}
}
}