Just some quick minor detail fixes

This commit is contained in:
Soerxpso
2015-06-22 21:19:32 -07:00
parent 1dddc46480
commit dad7e76357
2 changed files with 2 additions and 4 deletions

View File

@@ -3,7 +3,6 @@ package me.josvth.randomspawn;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.logging.Logger;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
@@ -106,8 +105,8 @@ public class RandomSpawn extends JavaPlugin{
xmin = xcenter + yamlHandler.worlds.getDouble(worldName +".spawnbyplayerarea.x-min", -500);
xmax = xcenter + yamlHandler.worlds.getDouble(worldName +".spawnbyplayerarea.x-max", 500);
zmin = xcenter + yamlHandler.worlds.getDouble(worldName +".spawnbyplayerarea.z-min", -500);
zmax = xcenter + yamlHandler.worlds.getDouble(worldName +".spawnbyplayerarea.z-max", 500);
zmin = zcenter + yamlHandler.worlds.getDouble(worldName +".spawnbyplayerarea.z-min", -500);
zmax = zcenter + yamlHandler.worlds.getDouble(worldName +".spawnbyplayerarea.z-max", 500);
exclusionZone = yamlHandler.worlds.getDouble(worldName + ".spawnbyplayerarea.exclusionzone", 0);