We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3d463a commit dd23f5aCopy full SHA for dd23f5a
src/main/java/ch/njol/skript/structures/StructUsing.java
@@ -17,7 +17,8 @@
17
@Name("Using Experimental Feature")
18
@Description({
19
"Place at the top of a script file to enable an optional experimental feature.",
20
- "For example, this might include "
+ "Experimental features may change behavior in Skript and may contain bugs. Use at your own discretion.",
21
+ "A list of the available experimental features can be found in the changelog for your version of Skript."
22
})
23
@Examples({
24
"using 1.21",
@@ -32,7 +33,6 @@ public class StructUsing extends Structure {
32
33
Skript.registerSimpleStructure(StructUsing.class, "using [[the] experiment] <.+>");
34
}
35
- @SuppressWarnings("NotNullFieldNotInitialized")
36
private Experiment experiment;
37
38
@Override
0 commit comments