Skip to content

Commit

Permalink
Some more bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bensku committed Mar 12, 2016
1 parent a119dd9 commit 5d24cf5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/Skript.java
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public final class Skript extends JavaPlugin implements Listener {

// ================ PLUGIN ================

public static String MIRRE = "V9";
public static String MIRRE = "V9b";
public static boolean DEV_BUILD = true; //Disables version checking

@Nullable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import org.bukkit.event.Event;
import org.bukkit.event.HandlerList;

import ch.njol.skript.Skript;
import ch.njol.skript.hooks.regions.classes.Region;

/**
Expand Down
7 changes: 6 additions & 1 deletion src/test/java/ch/njol/skript/registrations/ClassesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,12 @@ public void test() {
Color.BLACK, StructureType.RED_MUSHROOM, WeatherType.THUNDER,
new Date(System.currentTimeMillis()), new Timespan(1337), new Time(12000), new Timeperiod(1000, 23000),
new Experience(15), new Direction(0, Math.PI, 10), new Direction(new double[] {0, 1, 0}),
new EntityType(new SimpleEntityData(HumanEntity.class), 300), new CreeperData(), new SimpleEntityData(Snowball.class), new HorseData(Variant.SKELETON_HORSE), new WolfData(), new XpOrbData(50),
new EntityType(new SimpleEntityData(HumanEntity.class), 300),
new CreeperData(),
new SimpleEntityData(Snowball.class),
new HorseData(Variant.SKELETON_HORSE),
new WolfData(),
new XpOrbData(50),

// Bukkit - simple classes only
GameMode.ADVENTURE, Biome.EXTREME_HILLS, DamageCause.FALL,
Expand Down

0 comments on commit 5d24cf5

Please sign in to comment.