Skip to content

Clean up StructUsing's description. #7806

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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