Fix DamageModifiers

This commit is contained in:
penev92
2015-07-04 16:14:17 +03:00
parent fe94b7686e
commit 351cf254e7
7 changed files with 22 additions and 19 deletions

View File

@@ -8,7 +8,6 @@
*/
#endregion
using OpenRA.GameRules;
using OpenRA.Traits;
namespace OpenRA.Mods.Common.Traits
@@ -18,6 +17,6 @@ namespace OpenRA.Mods.Common.Traits
class Invulnerable : IDamageModifier
{
public int GetDamageModifier(Actor attacker, DamageWarhead warhead) { return 0; }
public int GetDamageModifier(Actor attacker, IWarhead warhead) { return 0; }
}
}