mirror of
https://github.com/Zrips/Jobs.git
synced 2024-12-30 21:07:48 +01:00
Block ownership fix #2
This commit is contained in:
parent
7f933b5e35
commit
06f59f70cc
@ -23,7 +23,6 @@ import com.gamingmesh.jobs.stuff.blockLoc;
|
||||
|
||||
import net.Zrips.CMILib.Container.CMILocation;
|
||||
import net.Zrips.CMILib.Items.CMIMaterial;
|
||||
import net.Zrips.CMILib.Logs.CMIDebug;
|
||||
|
||||
public class BlockOwnerShip {
|
||||
|
||||
@ -184,7 +183,6 @@ public class BlockOwnerShip {
|
||||
blockLoc bl = new blockLoc(loc);
|
||||
Map<String, UUID> record = ownerMapByLocation.get(bl.getWorldName());
|
||||
if (record == null) {
|
||||
CMIDebug.d("first null");
|
||||
return null;
|
||||
}
|
||||
return record.get(bl.toVectorString());
|
||||
|
@ -18,7 +18,6 @@
|
||||
|
||||
package com.gamingmesh.jobs.listeners;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -30,7 +29,6 @@ import org.bukkit.GameMode;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.block.Block;
|
||||
import org.bukkit.block.BlockFace;
|
||||
import org.bukkit.block.BrewingStand;
|
||||
import org.bukkit.block.Furnace;
|
||||
import org.bukkit.block.data.Ageable;
|
||||
@ -127,7 +125,6 @@ import net.Zrips.CMILib.Container.CMILocation;
|
||||
import net.Zrips.CMILib.Entities.CMIEntityType;
|
||||
import net.Zrips.CMILib.Items.CMIItemStack;
|
||||
import net.Zrips.CMILib.Items.CMIMaterial;
|
||||
import net.Zrips.CMILib.Logs.CMIDebug;
|
||||
import net.Zrips.CMILib.Version.Version;
|
||||
|
||||
public final class JobsPaymentListener implements Listener {
|
||||
@ -1099,7 +1096,9 @@ public final class JobsPaymentListener implements Listener {
|
||||
} catch (IllegalArgumentException e) {
|
||||
return;
|
||||
}
|
||||
} else
|
||||
}
|
||||
|
||||
if (uuid == null)
|
||||
return;
|
||||
|
||||
Player player = Bukkit.getPlayer(uuid);
|
||||
|
Loading…
Reference in New Issue
Block a user