against clan needs to have a getter

This commit is contained in:
NewGarbo 2016-02-08 18:38:30 +00:00
parent 9379c4190a
commit 3ee3059bc7
1 changed files with 6 additions and 0 deletions

View File

@ -11,6 +11,7 @@ import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.Sound;
import org.bukkit.entity.FallingBlock;
import org.bukkit.entity.HumanEntity;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.block.BlockBreakEvent;
@ -555,4 +556,9 @@ public class Outpost implements Listener
{
setHealth(_health + health);
}
public ClanInfo getAgainst()
{
return _against;
}
}