diff --git a/game/modules/tome/data/timed_effects/mental.lua b/game/modules/tome/data/timed_effects/mental.lua index a5b616ca6611a4d0536218a0bd85fee566a6c852..20e73d53e844e04382f68b1d43d8b7c2e8c82314 100644 --- a/game/modules/tome/data/timed_effects/mental.lua +++ b/game/modules/tome/data/timed_effects/mental.lua @@ -408,7 +408,7 @@ newEffect{ long_desc = function(self, eff) local message = ("The target has been beckoned by %s and is heeding the call. There is a %d%% chance of moving towards the beckoner each turn."):format(eff.source.name, eff.chance) if eff.spellpowerChangeId and eff.mindpowerChangeId then - message = message..(" (spellpower: -%d, mindpower: -%d"):format(eff.spellpowerChange, eff.mindpowerChange) + message = message..(" (spellpower: %d, mindpower: %d"):format(eff.spellpowerChange, eff.mindpowerChange) end return message end,