Implement handbook teleporting

also a few formatting changes and sort data by logical sense
This commit is contained in:
KingRainbow44
2023-05-12 20:18:53 -04:00
parent f8054a82a9
commit 78ee3e8db1
9 changed files with 149 additions and 33 deletions

View File

@@ -29,4 +29,10 @@ public interface HandbookBody {
private int amount = 1; // Range between 1 - Long.MAX_VALUE.
}
@Getter
class TeleportTo {
private String player; // Parse into online player ID.
private String scene; // Parse into a scene ID.
}
}