Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 9f9d373

Browse files
committed
Version 1.3
1 parent 1f49293 commit 9f9d373

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/main/java/me/asleepp/SkriptItemsAdder/elements/effects/EffSetToolUsages.java

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
package me.asleepp.SkriptItemsAdder.elements.effects;
22

33
import ch.njol.skript.Skript;
4+
import ch.njol.skript.doc.Description;
5+
import ch.njol.skript.doc.Examples;
6+
import ch.njol.skript.doc.Name;
7+
import ch.njol.skript.doc.Since;
48
import ch.njol.skript.lang.Effect;
59
import ch.njol.skript.lang.Expression;
610
import ch.njol.skript.lang.SkriptParser;
@@ -9,8 +13,10 @@
913
import org.bukkit.event.Event;
1014
import org.bukkit.inventory.ItemStack;
1115

12-
import javax.annotation.Nullable;
13-
16+
@Name("Set Usages Of Tool")
17+
@Description({"Set the usages of your tool"})
18+
@Examples({"set usages of player's tool to 2"})
19+
@Since("1.3")
1420
public class EffSetToolUsages extends Effect {
1521
private Expression<ItemStack> tool;
1622
private Expression<Integer> usages;

0 commit comments

Comments
 (0)