1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

Changed access levels to enable inheritation of variables

Changed access levels to enable inheritation of variables in sub classes.
This commit is contained in:
sarhatabaot 2019-05-04 22:30:33 +03:00
parent 3c651dcccb
commit 6b5b55f988

View File

@ -6,8 +6,8 @@ import org.bukkit.entity.Player;
import java.util.UUID;
public abstract class SlimefunTask implements Runnable {
private UUID uuid;
private int id;
protected UUID uuid;
protected int id;
public SlimefunTask(Player p){
this.uuid = p.getUniqueId();