From 1920989a75677241fa93c8b8470c96bbb97d067b Mon Sep 17 00:00:00 2001 From: Mark Sturgill Date: Sat, 4 Jul 2015 18:29:10 -0700 Subject: [PATCH] Mindblast modifier to /2 (Fix #5) --- Scripts/Spells/Fifth/MindBlast.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/Spells/Fifth/MindBlast.cs b/Scripts/Spells/Fifth/MindBlast.cs index 5a2a19ea5..3243408b6 100644 --- a/Scripts/Spells/Fifth/MindBlast.cs +++ b/Scripts/Spells/Fifth/MindBlast.cs @@ -104,7 +104,7 @@ namespace Server.Spells.Fifth if ( lowestStat > 150 ) lowestStat = 150; - double damage = GetDamageScalar(m)*(highestStat - lowestStat) / 4;//less damage + double damage = GetDamageScalar(m)*(highestStat - lowestStat) / 2; // Many users prefer 3 or 4 if ( damage > 45 ) damage = 45; @@ -152,4 +152,4 @@ namespace Server.Spells.Fifth } } } -} \ No newline at end of file +}