diff --git a/src/main/java/ch/njol/skript/effects/EffKill.java b/src/main/java/ch/njol/skript/effects/EffKill.java index a7582a9f598..882dc83c6e6 100644 --- a/src/main/java/ch/njol/skript/effects/EffKill.java +++ b/src/main/java/ch/njol/skript/effects/EffKill.java @@ -20,11 +20,12 @@ import org.jetbrains.annotations.Nullable; @Name("Kill") -@Description({"Kills an entity.", - "Note: This effect does not set the entity's health to 0 (which causes issues), but damages the entity by 100 times its maximum health."}) -@Examples({"kill the player", - "kill all creepers in the player's world", - "kill all endermen, witches and bats"}) +@Description("Kills an entity.") +@Examples({ + "kill the player", + "kill all creepers in the player's world", + "kill all endermen, witches and bats" +}) @Since("1.0, 2.10 (ignoring totem of undying)") public class EffKill extends Effect {