Skip to content

Commit

Permalink
Cleanup events further.
Browse files Browse the repository at this point in the history
  • Loading branch information
Fortifier42 committed Feb 13, 2016
1 parent c0452e8 commit a5258cd
Show file tree
Hide file tree
Showing 21 changed files with 33 additions and 36 deletions.
Expand Up @@ -39,7 +39,7 @@

public class PlayerCompletesSkyBlockChallengeScriptEvent extends BukkitScriptEvent implements Listener {

public PlayerCompletesSkyBlockChallengeScriptEvent instance;
public static PlayerCompletesSkyBlockChallengeScriptEvent instance;
public ChallengeCompleteEvent event;
public Element challenge;
public Element xp_reward;
Expand Down
Expand Up @@ -35,7 +35,7 @@

public class PlayerExitsSkyBlockScriptEvent extends BukkitScriptEvent implements Listener {

public PlayerExitsSkyBlockScriptEvent instance;
public static PlayerExitsSkyBlockScriptEvent instance;
public IslandExitEvent event;
public dLocation location;
public dLocation island_location;
Expand Down
Expand Up @@ -36,7 +36,7 @@

public class SkyBlockCreatedScriptEvent extends BukkitScriptEvent implements Listener {

public SkyBlockCreatedScriptEvent instance;
public static SkyBlockCreatedScriptEvent instance;
public IslandNewEvent event;
public dLocation location;
public Element schematic;
Expand Down
Expand Up @@ -34,7 +34,7 @@

public class SkyBlockResetScriptEvent extends BukkitScriptEvent implements Listener {

public SkyBlockResetScriptEvent instance;
public static SkyBlockResetScriptEvent instance;
public IslandResetEvent event;
public dLocation location;
public dPlayer owner;
Expand Down
Expand Up @@ -35,7 +35,7 @@

public class PlayerAFKStatusScriptEvent extends BukkitScriptEvent implements Listener {

public PlayerAFKStatusScriptEvent instance;
public static PlayerAFKStatusScriptEvent instance;
public AfkStatusChangeEvent event;
public Element afk;

Expand Down
Expand Up @@ -35,7 +35,7 @@

public class PlayerGodModeStatusScriptEvent extends BukkitScriptEvent implements Listener {

public PlayerGodModeStatusScriptEvent instance;
public static PlayerGodModeStatusScriptEvent instance;
public GodStatusChangeEvent event;
public Element god;

Expand Down
Expand Up @@ -36,7 +36,7 @@

public class PlayerJailStatusScriptEvent extends BukkitScriptEvent implements Listener {

public PlayerJailStatusScriptEvent instance;
public static PlayerJailStatusScriptEvent instance;
public JailStatusChangeEvent event;
public Element jailed;

Expand Down
Expand Up @@ -36,7 +36,7 @@

public class PlayerMuteStatusScriptEvent extends BukkitScriptEvent implements Listener {

public PlayerMuteStatusScriptEvent instance;
public static PlayerMuteStatusScriptEvent instance;
public MuteStatusChangeEvent event;
public Element muted;

Expand Down
Expand Up @@ -45,8 +45,7 @@ public mcMMOPlayerGainsXPScriptEvent() {
}

public static mcMMOPlayerGainsXPScriptEvent instance;

public static McMMOPlayerXpGainEvent event;
public McMMOPlayerXpGainEvent event;
public dPlayer player;
public Element skill;
public Element xp;
Expand Down
Expand Up @@ -44,8 +44,7 @@ public mcMMOPlayerLevelChangeScriptEvent() {
}

public static mcMMOPlayerLevelChangeScriptEvent instance;

public static McMMOPlayerLevelChangeEvent event;
public McMMOPlayerLevelChangeEvent event;
public dPlayer player;
public Element skill;
public int level;
Expand Down
Expand Up @@ -48,8 +48,7 @@ public mcMMOPlayerLevelDownScriptEvent() {
}

public static mcMMOPlayerLevelDownScriptEvent instance;

public static McMMOPlayerLevelDownEvent event;
public McMMOPlayerLevelDownEvent event;
public dPlayer player;
public Element skill;
public int new_level;
Expand Down
Expand Up @@ -49,7 +49,7 @@ public mcMMOPlayerLevelUpScriptEvent() {
}

public static mcMMOPlayerLevelUpScriptEvent instance;
public static McMMOPlayerLevelUpEvent event;
public McMMOPlayerLevelUpEvent event;
public dPlayer player;
public Element skill;
public int new_level;
Expand Down
Expand Up @@ -39,7 +39,7 @@ public MobArenaEndsScriptEvent() {
instance = this;
}

public MobArenaEndsScriptEvent instance;
public static MobArenaEndsScriptEvent instance;
public ArenaEndEvent event;
public MobArenaArena arena;
public Element wave;
Expand Down
Expand Up @@ -37,7 +37,7 @@ public MobArenaStartsScriptEvent() {
instance = this;
}

public MobArenaStartsScriptEvent instance;
public static MobArenaStartsScriptEvent instance;
public ArenaStartEvent event;
public MobArenaArena arena;

Expand Down
Expand Up @@ -39,7 +39,7 @@ public MobArenaWaveChangesScriptEvent() {
instance = this;
}

public MobArenaWaveChangesScriptEvent instance;
public static MobArenaWaveChangesScriptEvent instance;
public NewWaveEvent event;
public MobArenaArena arena;
public Element wave;
Expand Down
Expand Up @@ -54,15 +54,15 @@ public MythicMobsDeathEvent() {
instance = this;
}

MythicMobsDeathEvent instance;
MythicMobDeathEvent event;
MythicMobsMob mob;
dEntity entity;
dEntity killer;
Element level;
dList oldDrops;
Element experience;
List<ItemStack> newDrops;
public static MythicMobsDeathEvent instance;
public MythicMobDeathEvent event;
public MythicMobsMob mob;
public dEntity entity;
public dEntity killer;
public Element level;
public dList oldDrops;
public Element experience;
public List<ItemStack> newDrops;

@Override
public boolean couldMatch(ScriptContainer scriptContainer, String s) {
Expand Down
Expand Up @@ -35,7 +35,7 @@

public class PVPArenaStartsScriptEvent extends BukkitScriptEvent implements Listener {

public PVPArenaStartsScriptEvent instance;
public static PVPArenaStartsScriptEvent instance;
public PAStartEvent event;
public dList fighters;
public PVPArenaArena arena;
Expand Down
Expand Up @@ -42,11 +42,11 @@ public ShopKeeperTradeScriptEvent() {
instance = this;
}

ShopKeeperTradeScriptEvent instance;
ShopkeeperTradeEvent event;
ShopKeeper keeper;
dPlayer player;
dList recipe;
public static ShopKeeperTradeScriptEvent instance;
public ShopkeeperTradeEvent event;
public ShopKeeper keeper;
public dPlayer player;
public dList recipe;

@Override
public boolean couldMatch(ScriptContainer scriptContainer, String s) {
Expand Down
Expand Up @@ -40,7 +40,7 @@ public PlayerEntersTownScriptEvent() {
instance = this;
}

public PlayerEntersTownScriptEvent instance;
public static PlayerEntersTownScriptEvent instance;
public PlayerChangePlotEvent event;
public dTown town;

Expand Down
Expand Up @@ -40,7 +40,7 @@ public PlayerExitsTownScriptEvent() {
instance = this;
}

public PlayerExitsTownScriptEvent instance;
public static PlayerExitsTownScriptEvent instance;
public PlayerChangePlotEvent event;
public dTown town;

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Expand Up @@ -3,7 +3,7 @@ authors: [GnomeffinWay, Morphan1]
version: ${project.version} (build ${BUILD_NUMBER})
main: net.gnomeffinway.depenizen.Depenizen
depend: [Denizen]
softdepend: [ASkyBlock, BattleNight, Dynmap, Essentials, Factions, GriefPrevention, Heroes, HyperConomy, Jobs, MobArena, MythicMobs, NoCheatPlus, PlotMe, Prism, Quests, ShopKeepers, SimpleClans, SkillAPI, TerrainControl, Towny, Votifier, WorldEditWorldGuard, mcMMO, pvparena, pvpstats]
softdepend: [ASkyBlock, BattleNight, Dynmap, Essentials, Factions, GriefPrevention, Heroes, HyperConomy, Jobs, mcMMO, MobArena, MythicMobs, NoCheatPlus, PlotMe, Prism, pvparena, pvpstats, Quests, ShopKeepers, SimpleClans, SkillAPI, TerrainControl, Towny, Votifier, WorldEdit, WorldGuard]

commands:
depenizen:
Expand Down

0 comments on commit a5258cd

Please sign in to comment.