diff --git a/2006Redone Server/src/com/rebotted/game/npcs/NpcHandler.java b/2006Redone Server/src/com/rebotted/game/npcs/NpcHandler.java index ea273be8..89f9c073 100644 --- a/2006Redone Server/src/com/rebotted/game/npcs/NpcHandler.java +++ b/2006Redone Server/src/com/rebotted/game/npcs/NpcHandler.java @@ -967,7 +967,7 @@ public class NpcHandler { // These npcs shouldn't have drops return; } - for (ItemDrop possible_drop : NPCDropsHandler.NPC_DROPS(getNpcListName(npcs[i].npcType).toLowerCase(), npcs[i].npcType)) { + for (ItemDrop possible_drop : NPCDropsHandler.NPC_DROPS(getNpcListName(npcs[i].npcType).toLowerCase().replace(" ", "_"), npcs[i].npcType)) { if (Misc.random(possible_drop.getChance()) == 0) { int amt = possible_drop.getAmount(); GameEngine.itemHandler.createGroundItem(c, possible_drop.getItemID(), npcs[i].absX, npcs[i].absY, amt, c.playerId); diff --git a/2006Redone Server/src/com/rebotted/net/packets/impl/Commands.java b/2006Redone Server/src/com/rebotted/net/packets/impl/Commands.java index 33f3b900..fa761c09 100644 --- a/2006Redone Server/src/com/rebotted/net/packets/impl/Commands.java +++ b/2006Redone Server/src/com/rebotted/net/packets/impl/Commands.java @@ -820,7 +820,7 @@ public class Commands implements PacketType { boolean attackPlayer = NpcHandler.getNpcListCombat(newNPC) > 0; if (newNPC > 0) { NpcHandler.spawnNpc(player, newNPC, player.absX, player.absY, player.heightLevel, 0, NpcHandler.getNpcListHP(newNPC), maxHit, attack, defence, attackPlayer, false); - player.getPacketSender().sendMessage("You spawn a " + NpcHandler.getNpcListName(newNPC).toLowerCase() + "."); + player.getPacketSender().sendMessage("You spawn a " + NpcHandler.getNpcListName(newNPC) + "."); //player.npcSpawned = newNPC; } else { player.getPacketSender().sendMessage("Npc " + newNPC + " does not exist."); diff --git a/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/slayer/SlayerRequirements.class b/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/slayer/SlayerRequirements.class index 977f3295..93a4e8e6 100644 Binary files a/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/slayer/SlayerRequirements.class and b/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/slayer/SlayerRequirements.class differ diff --git a/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/smithing/SmithingInterface.class b/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/smithing/SmithingInterface.class index 09a5b81c..b249dc84 100644 Binary files a/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/smithing/SmithingInterface.class and b/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/smithing/SmithingInterface.class differ diff --git a/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/thieving/Pickpocket$1.class b/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/thieving/Pickpocket$1.class index 585237c6..496da6cd 100644 Binary files a/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/thieving/Pickpocket$1.class and b/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/thieving/Pickpocket$1.class differ diff --git a/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/thieving/Pickpocket.class b/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/thieving/Pickpocket.class index 2e760907..4a10cc12 100644 Binary files a/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/thieving/Pickpocket.class and b/CompiledServer/production/2006rebotted/com/rebotted/game/content/skills/thieving/Pickpocket.class differ diff --git a/CompiledServer/production/2006rebotted/com/rebotted/net/packets/impl/Commands.class b/CompiledServer/production/2006rebotted/com/rebotted/net/packets/impl/Commands.class index 91d440d9..fad179bb 100644 Binary files a/CompiledServer/production/2006rebotted/com/rebotted/net/packets/impl/Commands.class and b/CompiledServer/production/2006rebotted/com/rebotted/net/packets/impl/Commands.class differ