diff options
| author | Torui <44932079+ToruiDev@users.noreply.github.com> | 2022-05-21 16:11:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-21 16:11:01 +0200 |
| commit | b9b1294882b68e2d85aec0c1d28570f5d68359b9 (patch) | |
| tree | 599b996aa7844a4bc9d989d75f879c5a065e6c55 /src/main/java/de/torui/coflsky/commands | |
| parent | 4a85bf6754c101b43d2d0d3a6c9ed5744dd0308d (diff) | |
| download | COFL-b9b1294882b68e2d85aec0c1d28570f5d68359b9.tar.gz COFL-b9b1294882b68e2d85aec0c1d28570f5d68359b9.tar.bz2 COFL-b9b1294882b68e2d85aec0c1d28570f5d68359b9.zip | |
initial implementation (#38)
* rewrite everything
* Add replace and insert methods for tooltips
* Add sleep bcz hypixel doesnt want a prefilled chest
* Commit requested changes
* Fix messed up item stacks for stackables
* Move handlers to handlers package
* Empty hashmap on gui close
* merge conflixt fix
* Fix index out of bound exception
* Fix bcz forge
* fix messed slot assigns when there is empoty inventory slot
* Make tooltips respect mod settings
* Fix typo
* save tab contents
* optimise description loading & fix tab
Co-authored-by: HackedOS <63157139+HackedOS@users.noreply.github.com>
Co-authored-by: Äkwav <xekwavx@gmail.com>
Diffstat (limited to 'src/main/java/de/torui/coflsky/commands')
| -rw-r--r-- | src/main/java/de/torui/coflsky/commands/CommandType.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/de/torui/coflsky/commands/CommandType.java b/src/main/java/de/torui/coflsky/commands/CommandType.java index 533af1e..7f196d4 100644 --- a/src/main/java/de/torui/coflsky/commands/CommandType.java +++ b/src/main/java/de/torui/coflsky/commands/CommandType.java @@ -51,6 +51,8 @@ public enum CommandType { updateLocation, @SerializedName("chatBatch") chatBatch, + @SerializedName("uploadTab") + uploadTab, ; public static Map<CommandType,String> data; static { |
