You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/ch/njol/skript/events/EvtBlock.java
+5-5
Original file line number
Diff line number
Diff line change
@@ -59,27 +59,27 @@ public class EvtBlock extends SkriptEvent {
59
59
.description("Called when a block is broken by a player. If you use 'on mine', only events where the broken block dropped something will call the trigger.")
60
60
.examples("on mine:", "on break of stone:", "on mine of any ore:", "on break of chest[facing=north]:", "on break of potatoes[age=7]:")
61
61
.requiredPlugins("Minecraft 1.13+ (BlockData)")
62
-
.since("1.0 (break), <i>unknown</i> (mine), INSERT VERSION (BlockData support)");
.description("Called when a block is created, but not by a player, e.g. snow forms due to snowfall, water freezes in cold biomes. This isn't called when block spreads (mushroom growth, water physics etc.), as it has its own event (see <a href='#spread'>spread event</a>).")
80
80
.examples("on form of snow:", "on form of a mushroom:")
81
81
.requiredPlugins("Minecraft 1.13+ (BlockData)")
82
-
.since("1.0, INSERT VERSION (BlockData support)");
0 commit comments