We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3517681 commit 378b510Copy full SHA for 378b510
src/main/java/ch/njol/skript/lang/SkriptEventInfo.java
@@ -122,6 +122,16 @@ public SkriptEventInfo<E> keywords(String... keywords) {
122
return this;
123
}
124
125
+ /**
126
+ * Only used for Skript's documentation.
127
+ *
128
+ * @param since The version this event was added in
129
+ * @return This SkriptEventInfo object
130
+ */
131
+ public SkriptEventInfo<E> since(String since) {
132
+ return since(new String[]{since});
133
+ }
134
+
135
/**
136
* Only used for Skript's documentation.
137
*
0 commit comments