diff --git a/Server/src/org/crandor/game/content/skill/member/summoning/familiar/Familiar.java b/Server/src/org/crandor/game/content/skill/member/summoning/familiar/Familiar.java index eaacf867e..5f65830a5 100644 --- a/Server/src/org/crandor/game/content/skill/member/summoning/familiar/Familiar.java +++ b/Server/src/org/crandor/game/content/skill/member/summoning/familiar/Familiar.java @@ -536,11 +536,13 @@ public abstract class Familiar extends NPC implements Plugin { /** * Calls the familiar. */ + //int spamTimer = 0; public boolean call() { Location destination = getSpawnLocation(); - if (destination == null) { - owner.getPacketDispatch().sendMessage("Your familiar is too big to fit here. Try calling it again when you are standing"); - owner.getPacketDispatch().sendMessage("somewhere with more space."); + if (destination == null && spamTimer == 0) { + //owner.getPacketDispatch().sendMessage("Your familiar is too big to fit here. Try calling it again when you are standing"); + //owner.getPacketDispatch().sendMessage("somewhere with more space."); + //spamTimer = 50; return false; } setInvisible(getZoneMonitor().isRestricted(ZoneRestriction.FOLLOWERS) && !owner.getLocks().isLocked("enable_summoning"));