Skip to content

Commit 5d24cf5

Browse files
committed
Some more bug fixes
1 parent a119dd9 commit 5d24cf5

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

src/main/java/ch/njol/skript/Skript.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public final class Skript extends JavaPlugin implements Listener {
158158

159159
// ================ PLUGIN ================
160160

161-
public static String MIRRE = "V9";
161+
public static String MIRRE = "V9b";
162162
public static boolean DEV_BUILD = true; //Disables version checking
163163

164164
@Nullable

src/main/java/ch/njol/skript/hooks/regions/events/RegionBorderEvent.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
import org.bukkit.event.Event;
2727
import org.bukkit.event.HandlerList;
2828

29+
import ch.njol.skript.Skript;
2930
import ch.njol.skript.hooks.regions.classes.Region;
3031

3132
/**

src/test/java/ch/njol/skript/registrations/ClassesTest.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,12 @@ public void test() {
136136
Color.BLACK, StructureType.RED_MUSHROOM, WeatherType.THUNDER,
137137
new Date(System.currentTimeMillis()), new Timespan(1337), new Time(12000), new Timeperiod(1000, 23000),
138138
new Experience(15), new Direction(0, Math.PI, 10), new Direction(new double[] {0, 1, 0}),
139-
new EntityType(new SimpleEntityData(HumanEntity.class), 300), new CreeperData(), new SimpleEntityData(Snowball.class), new HorseData(Variant.SKELETON_HORSE), new WolfData(), new XpOrbData(50),
139+
new EntityType(new SimpleEntityData(HumanEntity.class), 300),
140+
new CreeperData(),
141+
new SimpleEntityData(Snowball.class),
142+
new HorseData(Variant.SKELETON_HORSE),
143+
new WolfData(),
144+
new XpOrbData(50),
140145

141146
// Bukkit - simple classes only
142147
GameMode.ADVENTURE, Biome.EXTREME_HILLS, DamageCause.FALL,

0 commit comments

Comments
 (0)