private final int[] DEADMAN_WORLDS = {317, 319, 321, 345, 352, 357, 360, 374};
private boolean isDeadman(){
for(int i : DEADMAN_WORLDS){
if(getBot().getWorld() == i){
return true;
}
}
return false;
}
Pretty simple, probs forgetting a world or new worlds will be added. Change the modifiers if necessary.