Tweaked wire resistance class

This commit is contained in:
Calclavia 2014-01-12 21:54:21 +08:00
parent e60b854ebc
commit 30505e0eb9

View file

@ -40,7 +40,7 @@ public enum EnumWireMaterial
{
this.name = name;
/** Multiply the realistic resistance by a factor for game balance. */
this.resistance = resistance;
this.resistance = resistance / 100;
this.damage = electrocutionDamage;
this.maxAmps = maxAmps;
this.color = new ColourRGBA(r, g, b, 255);