From 89bb2fc58b99602c8cad8e888cee82122c7a31eb Mon Sep 17 00:00:00 2001
From: Eric Wykoff <ericwykoff@yahoo.com>
Date: Mon, 23 Feb 2015 19:27:05 -0600
Subject: [PATCH] fix command blink preuse

---
 .../modules/tome/data/talents/chronomancy/temporal-hounds.lua | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/game/modules/tome/data/talents/chronomancy/temporal-hounds.lua b/game/modules/tome/data/talents/chronomancy/temporal-hounds.lua
index b9073aba0f..acbef5d3b0 100644
--- a/game/modules/tome/data/talents/chronomancy/temporal-hounds.lua
+++ b/game/modules/tome/data/talents/chronomancy/temporal-hounds.lua
@@ -218,9 +218,9 @@ newTalent{
 	requires_target = true,
 	on_pre_use = function(self, t, silent)
 		local p = self:isTalentActive(self.T_TEMPORAL_HOUNDS)
-		if not p or p.hounds < 1 then
+		if not p then
 			if not silent then
-				game.logPlayer(self, "You must have temporal hounds to use this talent.")
+				game.logPlayer(self, "Temporal Hounds must be sustained to cast this spell.")
 			end
 			return false
 		end
-- 
GitLab