Bumped to Java 16 & 1.17
This commit is contained in:
parent
2105904ba2
commit
30041b6210
5 changed files with 21 additions and 53 deletions
|
@ -7,7 +7,7 @@ public enum TriggerType {
|
|||
FIREWORK(FireworkTrigger.class, 6),
|
||||
FAKE_FIREWORK(FakeFireworkTrigger.class, 7),
|
||||
SPOT(SpotTrigger.class, 6),
|
||||
LASER(LaserTrigger.class, 6),
|
||||
// LASER(LaserTrigger.class, 6),
|
||||
ANIMA(AnimaTrigger.class, 2),
|
||||
PARTICLE(ParticleTrigger.class, 7);
|
||||
|
||||
|
|
|
@ -11,8 +11,10 @@ public class LaserTrigger extends TriggerTask {
|
|||
private final String name;
|
||||
private Location newLocation;
|
||||
|
||||
//TODO Fix laser for 1.17
|
||||
public LaserTrigger(String[] data) {
|
||||
super(TriggerType.LASER, data);
|
||||
//super(TriggerType.LASER, data);
|
||||
super(null, data);
|
||||
|
||||
this.name = data[0];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue