Skip to content

Commit

Permalink
Cleanup some errors from PR's
Browse files Browse the repository at this point in the history
  • Loading branch information
ataranlen committed Jul 22, 2017
1 parent 9ad53ec commit 193cf6e
Show file tree
Hide file tree
Showing 27 changed files with 11 additions and 2 deletions.
Binary file modified civcraft/bin/com/avrgaming/civcraft/config/CivSettings.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified civcraft/bin/com/avrgaming/civcraft/listener/BlockListener.class
Binary file not shown.
Binary file modified civcraft/bin/com/avrgaming/civcraft/main/CivGlobal.class
Binary file not shown.
Binary file modified civcraft/bin/com/avrgaming/civcraft/object/Civilization.class
Binary file not shown.
Binary file modified civcraft/bin/com/avrgaming/civcraft/object/EconObject.class
Binary file not shown.
Binary file modified civcraft/bin/com/avrgaming/civcraft/object/Resident.class
Binary file not shown.
Binary file modified civcraft/bin/com/avrgaming/civcraft/object/Town.class
Binary file not shown.
Binary file modified civcraft/bin/com/avrgaming/civcraft/structure/Library.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified civcraft/bin/com/avrgaming/civcraft/structure/Stable.class
Binary file not shown.
Binary file modified civcraft/bin/gpl/HorseModifier$HorseType.class
Binary file not shown.
Binary file modified civcraft/bin/gpl/HorseModifier$HorseVariant.class
Binary file not shown.
Binary file modified civcraft/bin/gpl/HorseModifier$NBTUtil.class
Binary file not shown.
Binary file modified civcraft/bin/gpl/HorseModifier$ReflectionUtil.class
Binary file not shown.
Binary file modified civcraft/bin/gpl/HorseModifier.class
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@
import com.avrgaming.civcraft.structure.CannonTower;
import com.avrgaming.civcraft.structure.Farm;
import com.avrgaming.civcraft.structure.Pasture;
import com.avrgaming.civcraft.structure.Stable;
//import com.avrgaming.civcraft.structure.Temple;
import com.avrgaming.civcraft.structure.Wall;
import com.avrgaming.civcraft.structure.farm.FarmChunk;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import com.avrgaming.civcraft.main.CivGlobal;
import net.milkbowl.vault.economy.Economy;
import org.bukkit.Bukkit;
import org.bukkit.OfflinePlayer;
import org.bukkit.entity.Player;

import java.util.UUID;
Expand Down
6 changes: 5 additions & 1 deletion civcraft/src/com/avrgaming/civcraft/structure/Stable.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,13 @@
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import org.bukkit.ChatColor;
import org.bukkit.Location;
import org.bukkit.attribute.Attribute;
import org.bukkit.craftbukkit.v1_11_R1.util.HashTreeSet;
import org.bukkit.entity.Horse;
import org.bukkit.entity.Player;
import org.bukkit.event.player.PlayerInteractEvent;
Expand All @@ -49,6 +52,7 @@
import com.avrgaming.civcraft.object.StructureSign;
import com.avrgaming.civcraft.object.Town;
import com.avrgaming.civcraft.util.BlockCoord;
import com.avrgaming.civcraft.util.ChunkCoord;
import com.avrgaming.civcraft.util.CivColor;
import com.avrgaming.civcraft.util.ItemManager;
import com.avrgaming.civcraft.util.SimpleBlock;
Expand All @@ -62,7 +66,7 @@ public class Stable extends Structure {
private BlockCoord muleSpawnCoord;
private NonMemberFeeComponent nonMemberFeeComponent;

public HashSet<ChunkCoord> chunks = new HashSet<ChunkCoord>();
public HashTreeSet<ChunkCoord> chunks = new HashTreeSet<ChunkCoord>();
public static Map<ChunkCoord, Stable> stableChunks = new ConcurrentHashMap<ChunkCoord, Stable>();

public Stable(ResultSet rs) throws SQLException, CivException {
Expand Down
5 changes: 5 additions & 0 deletions civcraft/src/gpl/HorseModifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
import org.bukkit.metadata.FixedMetadataValue;

import com.avrgaming.civcraft.main.CivCraft;
import com.avrgaming.civcraft.main.CivLog;
import com.avrgaming.civcraft.main.CivMessage;

/**
* HorseModifier v1.1
Expand Down

0 comments on commit 193cf6e

Please sign in to comment.