// claim: attempt to claim area
// claim remove: remove area from town
// Check if player has entered a new town/wilderness
if (to.getWorld().isUsingTowny() && TownySettings.getShowTownNotifications()) {
ChunkNotification chunkNotifier = new ChunkNotification(from, to);
String msg = chunkNotifier.getNotificationString();
if (msg != null)
player.sendMessage(msg);
}
}