Skip to content

Commit

Permalink
feat: commands api new arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
DeeChael committed Sep 21, 2023
1 parent 280bcfa commit 1b0ccc9
Show file tree
Hide file tree
Showing 11 changed files with 2,669 additions and 2,388 deletions.
34 changes: 17 additions & 17 deletions patches/api/0006-feat-more-command-arguments.patch
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ Subject: [PATCH] feat: more command arguments

diff --git a/src/main/java/org/bukkit/block/BlockStack.java b/src/main/java/org/bukkit/block/BlockStack.java
new file mode 100644
index 0000000000000000000000000000000000000000..99aaf9ead87fa1f2f64f873be0f5b278388f23a0
index 0000000000000000000000000000000000000000..65ba7bea551fb3e3ad4860537d32e3e7c60193ec
--- /dev/null
+++ b/src/main/java/org/bukkit/block/BlockStack.java
@@ -0,0 +1,12 @@
+package org.bukkit.block;
+
+import net.deechael.nbt.NbtTag;
+import org.bukkit.Material;
+
+public interface BlockStack {
+
+ Material getType();
+
+ NbtTag getTag();
+
+}
+package org.bukkit.block;
+
+import net.deechael.nbt.NbtTag;
+import org.bukkit.Material;
+
+public interface BlockStack {
+
+ Material getType();
+
+ NbtTag getTag();
+
+}
diff --git a/src/main/kotlin/net/deechael/command/ArgumentManager.kt b/src/main/kotlin/net/deechael/command/ArgumentManager.kt
index a71ff7e1bd612f6e09ccc98400da1d69cd90cec6..948a2a88114475e9f3b35f8a3214ee97e4dfe9f8 100644
--- a/src/main/kotlin/net/deechael/command/ArgumentManager.kt
Expand Down Expand Up @@ -76,12 +76,12 @@ index a71ff7e1bd612f6e09ccc98400da1d69cd90cec6..948a2a88114475e9f3b35f8a3214ee97
\ No newline at end of file
diff --git a/src/main/kotlin/net/deechael/nbt/NbtTag.kt b/src/main/kotlin/net/deechael/nbt/NbtTag.kt
new file mode 100644
index 0000000000000000000000000000000000000000..58b040cb1396da710e2f74add6106bf4e28cbb40
index 0000000000000000000000000000000000000000..e4290f36165a42338210b36f2991f435ed832681
--- /dev/null
+++ b/src/main/kotlin/net/deechael/nbt/NbtTag.kt
@@ -0,0 +1,4 @@
+package net.deechael.nbt
+
+interface NbtTag {
+package net.deechael.nbt
+
+interface NbtTag {
+}
\ No newline at end of file
Loading

0 comments on commit 1b0ccc9

Please sign in to comment.