Fix extra bracket

This commit is contained in:
Esophose 2019-05-19 01:53:36 -06:00
parent af5a46e06a
commit 4d9186613d
1 changed files with 3 additions and 4 deletions

View File

@ -72,10 +72,9 @@ public class BossLocationManager implements IReloadable {
}
}
if(blocked) {
ServerUtils.get().logDebug("Unable to spawn boss due to worldguard region being in blocked list");
return false;
}
if(blocked) {
ServerUtils.get().logDebug("Unable to spawn boss due to worldguard region being in blocked list");
return false;
}
}