From 8d81e26504b81263af818f04cb3287d1d3bc8a66 Mon Sep 17 00:00:00 2001 From: Waverunner Date: Sun, 16 Mar 2014 15:26:42 -0400 Subject: [PATCH] Forgot a 0 --- scripts/commands/inspire.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/commands/inspire.py b/scripts/commands/inspire.py index 0206cb2a..531aa1e2 100644 --- a/scripts/commands/inspire.py +++ b/scripts/commands/inspire.py @@ -30,7 +30,7 @@ def run(core, actor, target, commandString): return if target.getPosition().getDistance2D(actor.getWorldPosition()) > float(20): - actor.sendSystemMessage(target.getCustomName() + ' is too far away to inspire.') + actor.sendSystemMessage(target.getCustomName() + ' is too far away to inspire.', 0) return builderWindow = BuffBuilderStartMessage(actor.getObjectId(), actor.getObjectId(), target.getObjectId())