Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/ch/njol/skript/structures/StructUsing.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
@Name("Using Experimental Feature")
@Description({
"Place at the top of a script file to enable an optional experimental feature.",
"For example, this might include "
"Experimental features may change behavior in Skript and may contain bugs. Use at your own discretion.",
"A list of the available experimental features can be found in the changelog for your version of Skript."
})
@Examples({
"using 1.21",
Expand All @@ -32,7 +33,6 @@ public class StructUsing extends Structure {
Skript.registerSimpleStructure(StructUsing.class, "using [[the] experiment] <.+>");
}

@SuppressWarnings("NotNullFieldNotInitialized")
private Experiment experiment;

@Override
Expand Down