mirror of
https://github.com/taoneill/war.git
synced 2024-11-24 03:05:54 +01:00
v0.3 Patton tested with Bukkit snapshot of build #87.
This commit is contained in:
parent
3f164f60c5
commit
88d8632931
@ -87,7 +87,7 @@ public class War extends JavaPlugin {
|
||||
|
||||
pm.registerEvent(Event.Type.PLAYER_LOGIN, playerListener, Priority.Normal, this);
|
||||
pm.registerEvent(Event.Type.PLAYER_QUIT, playerListener, Priority.Normal, this);
|
||||
pm.registerEvent(Event.Type.PLAYER_MOVE, playerListener, Priority.Highest, this);
|
||||
pm.registerEvent(Event.Type.PLAYER_MOVE, playerListener, Priority.High, this);
|
||||
|
||||
pm.registerEvent(Event.Type.ENTITY_DAMAGEDBY_ENTITY, entityListener, Priority.Normal, this);
|
||||
|
||||
|
@ -231,6 +231,7 @@ public class WarPlayerListener extends PlayerListener {
|
||||
} else if (zone.getLobby().isInWarHubLinkGate(to)){
|
||||
dropFromOldTeamIfAny(player);
|
||||
event.setTo(war.getWarHub().getLocation());
|
||||
player.teleportTo(war.getWarHub().getLocation());
|
||||
player.sendMessage(war.str("Welcome to the War hub."));
|
||||
}
|
||||
} else if(zone.getLobby().isLeavingZone(to)) { // already in a team and in warzone, leaving
|
||||
|
Loading…
Reference in New Issue
Block a user