Tweaked wire resistance class
This commit is contained in:
parent
e60b854ebc
commit
30505e0eb9
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ public enum EnumWireMaterial
|
||||||
{
|
{
|
||||||
this.name = name;
|
this.name = name;
|
||||||
/** Multiply the realistic resistance by a factor for game balance. */
|
/** Multiply the realistic resistance by a factor for game balance. */
|
||||||
this.resistance = resistance;
|
this.resistance = resistance / 100;
|
||||||
this.damage = electrocutionDamage;
|
this.damage = electrocutionDamage;
|
||||||
this.maxAmps = maxAmps;
|
this.maxAmps = maxAmps;
|
||||||
this.color = new ColourRGBA(r, g, b, 255);
|
this.color = new ColourRGBA(r, g, b, 255);
|
||||||
|
|
Loading…
Reference in a new issue