+ fixed sound pack

This commit is contained in:
坏黑 2019-04-02 21:31:25 +08:00
parent beff113531
commit 720ff96ac9

View File

@ -9,8 +9,8 @@ import org.bukkit.entity.Player;
public class SoundPack { public class SoundPack {
private Sound sound; private Sound sound;
private float a; private Float a;
private float b; private Float b;
private int delay; private int delay;
/** /**
@ -70,11 +70,11 @@ public class SoundPack {
return sound; return sound;
} }
public float getA() { public Float getA() {
return a; return a;
} }
public float getB() { public Float getB() {
return b; return b;
} }