private static final Map<Player, Selection<HumanNPC>> selections = Maps.newHashMap();
private static Selection<HumanNPC> getSelection(Player player) {
if (!selections.containsKey(player))
selections.put(player, new OwnerSelection(player));
return selections.get(player);
}