forked from MagicBane/Server
SpurceType lookup fixes for Piercing Crushing and Slashing
This commit is contained in:
@@ -830,7 +830,7 @@ public class Enum {
|
||||
Constitution,
|
||||
Corruption,
|
||||
Crossbow,
|
||||
Crush,
|
||||
Crushing,
|
||||
Dagger,
|
||||
DaggerMastery,
|
||||
DeBuff,
|
||||
@@ -868,7 +868,7 @@ public class Enum {
|
||||
NatureLore,
|
||||
Necromancy,
|
||||
Parry,
|
||||
Pierce,
|
||||
Piercing,
|
||||
Poison,
|
||||
POISON,
|
||||
PoleArm,
|
||||
@@ -879,7 +879,7 @@ public class Enum {
|
||||
Root,
|
||||
Shadowmastery,
|
||||
Siege,
|
||||
Slash,
|
||||
Slashing,
|
||||
Snare,
|
||||
Sorcery,
|
||||
Spear,
|
||||
@@ -986,7 +986,7 @@ public class Enum {
|
||||
Cold,
|
||||
Combat,
|
||||
ConstitutionBuff,
|
||||
Crush,
|
||||
Crushing,
|
||||
DamageShield,
|
||||
DeathShroud,
|
||||
DeBuff,
|
||||
|
||||
@@ -451,9 +451,9 @@ public class Resists {
|
||||
this.immuneTo.put(DamageType.Snare, true);
|
||||
|
||||
// Handle resists
|
||||
slash += rb.getFloat(ModType.Resistance, SourceType.Slash);
|
||||
crush += rb.getFloat(ModType.Resistance, SourceType.Crush);
|
||||
pierce += rb.getFloat(ModType.Resistance, SourceType.Pierce);
|
||||
slash += rb.getFloat(ModType.Resistance, SourceType.Slashing);
|
||||
crush += rb.getFloat(ModType.Resistance, SourceType.Crushing);
|
||||
pierce += rb.getFloat(ModType.Resistance, SourceType.Piercing);
|
||||
magic += rb.getFloat(ModType.Resistance, SourceType.Magic);
|
||||
bleed += rb.getFloat(ModType.Resistance, SourceType.Bleed);
|
||||
poison += rb.getFloat(ModType.Resistance, SourceType.Poison);
|
||||
|
||||
Reference in New Issue
Block a user