diff --git a/src/main/java/ch/njol/skript/classes/data/BukkitClasses.java b/src/main/java/ch/njol/skript/classes/data/BukkitClasses.java index ccf12240d29..d674a18890d 100644 --- a/src/main/java/ch/njol/skript/classes/data/BukkitClasses.java +++ b/src/main/java/ch/njol/skript/classes/data/BukkitClasses.java @@ -1410,7 +1410,7 @@ public String toVariableNameString(FireworkEffect effect) { .user("(panda )?genes?") .name("Gene") .description("Represents a Panda's main or hidden gene. " + - "See genetics for more info.") + "See genetics for more info.") .since("2.4") .requiredPlugins("Minecraft 1.14 or newer")); } @@ -1486,7 +1486,7 @@ public String toVariableNameString(EnchantmentOffer eo) { .user("attribute ?types?") .name("Attribute Type") .description("Represents the type of an attribute. Note that this type does not contain any numerical values." - + "See attribute types for more info.") + + "See attribute types for more info.") .since("2.5")); Classes.registerClass(new EnumClassInfo<>(Environment.class, "environment", "environments") diff --git a/src/main/java/ch/njol/skript/conditions/CondIsSlimeChunk.java b/src/main/java/ch/njol/skript/conditions/CondIsSlimeChunk.java index 71dbbea2dcc..1b71258482b 100755 --- a/src/main/java/ch/njol/skript/conditions/CondIsSlimeChunk.java +++ b/src/main/java/ch/njol/skript/conditions/CondIsSlimeChunk.java @@ -35,7 +35,7 @@ @Name("Is Slime Chunk") @Description({"Tests whether a chunk is a so-called slime chunk.", "Slimes can generally spawn in the swamp biome and in slime chunks.", - "For more info, see the Minecraft wiki."}) + "For more info, see the Minecraft wiki."}) @Examples({"command /slimey:", "\ttrigger:", "\t\tif chunk at player is a slime chunk:", diff --git a/src/main/java/ch/njol/skript/effects/EffExplosion.java b/src/main/java/ch/njol/skript/effects/EffExplosion.java index 4f0de85dd86..192119a54d6 100644 --- a/src/main/java/ch/njol/skript/effects/EffExplosion.java +++ b/src/main/java/ch/njol/skript/effects/EffExplosion.java @@ -37,7 +37,7 @@ * @author Peter Güttinger */ @Name("Explosion") -@Description({"Creates an explosion of a given force. The Minecraft Wiki has an article on explosions " + +@Description({"Creates an explosion of a given force. The Minecraft Wiki has an article on explosions " + "which lists the explosion forces of TNT, creepers, etc.", "Hint: use a force of 0 to create a fake explosion that does no damage whatsoever, or use the explosion effect introduced in Skript 2.0.", "Starting with Bukkit 1.4.5 and Skript 2.0 you can use safe explosions which will damage entities but won't destroy any blocks."}) diff --git a/src/main/java/ch/njol/skript/expressions/ExprAge.java b/src/main/java/ch/njol/skript/expressions/ExprAge.java index 2a29300beb0..1be159daf08 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprAge.java +++ b/src/main/java/ch/njol/skript/expressions/ExprAge.java @@ -119,7 +119,7 @@ public void change(Event event, @Nullable Object[] delta, ChangeMode mode) { setAge(obj, newValue); break; case RESET: - // baby animals takes 20 minutes to grow up - ref: https://minecraft.fandom.com/wiki/Breeding + // baby animals takes 20 minutes to grow up - ref: https://minecraft.wiki/w/Breeding if (obj instanceof org.bukkit.entity.Ageable) // it might change later on so removing entity age reset would be better unless // bukkit adds a method returning the default age diff --git a/src/main/java/ch/njol/skript/expressions/ExprExplosionYield.java b/src/main/java/ch/njol/skript/expressions/ExprExplosionYield.java index eea0c5fdd0a..cb0227ec419 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprExplosionYield.java +++ b/src/main/java/ch/njol/skript/expressions/ExprExplosionYield.java @@ -40,7 +40,7 @@ @Name("Explosion Yield") @Description({"The yield of the explosion in an explosion prime event. This is how big the explosion is.", " When changing the yield, values less than 0 will be ignored.", - " Read this wiki page for more information"}) + " Read this wiki page for more information"}) @Examples({"on explosion prime:", "\tset the yield of the explosion to 10"}) @Events("explosion prime") diff --git a/src/main/java/ch/njol/skript/expressions/ExprExplosiveYield.java b/src/main/java/ch/njol/skript/expressions/ExprExplosiveYield.java index b66b2f4e60d..3fa35bc76c7 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprExplosiveYield.java +++ b/src/main/java/ch/njol/skript/expressions/ExprExplosiveYield.java @@ -36,7 +36,7 @@ @Name("Explosive Yield") @Description({"The yield of an explosive (creeper, primed tnt, fireball, etc.). This is how big of an explosion is caused by the entity.", - "Read this wiki page for more information"}) + "Read this wiki page for more information"}) @Examples({"on spawn of a creeper:", "\tset the explosive yield of the event-entity to 10"}) @RequiredPlugins("Minecraft 1.12 or newer for creepers") diff --git a/src/main/java/ch/njol/skript/expressions/ExprGlidingState.java b/src/main/java/ch/njol/skript/expressions/ExprGlidingState.java index 6334e1af835..901ff127079 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprGlidingState.java +++ b/src/main/java/ch/njol/skript/expressions/ExprGlidingState.java @@ -31,7 +31,7 @@ import ch.njol.skript.expressions.base.SimplePropertyExpression; @Name("Gliding State") -@Description("Sets of gets gliding state of player. It allows you to set gliding state of entity even if they do not have an Elytra equipped.") +@Description("Sets of gets gliding state of player. It allows you to set gliding state of entity even if they do not have an Elytra equipped.") @Examples({"set gliding of player to off"}) @Since("2.2-dev21") public class ExprGlidingState extends SimplePropertyExpression { diff --git a/src/main/java/ch/njol/skript/expressions/ExprScoreboardTags.java b/src/main/java/ch/njol/skript/expressions/ExprScoreboardTags.java index 14da4e073ca..47f4f4e5712 100644 --- a/src/main/java/ch/njol/skript/expressions/ExprScoreboardTags.java +++ b/src/main/java/ch/njol/skript/expressions/ExprScoreboardTags.java @@ -41,7 +41,7 @@ @Name("Scoreboard Tags") @Description({"Scoreboard tags are simple list of texts stored directly in the data of an entity.", "So this is a Minecraft related thing, not Bukkit, so the tags will not get removed when the server stops. " + - "You can visit visit Minecraft Wiki for more info.", + "You can visit visit Minecraft Wiki for more info.", "This is changeable and valid for any type of entity. " + "Also you can use use the Has Scoreboard Tag condition to check whether an entity has the given tags.", "",