Fix cable shape computation. Closes #2435. Thanks to Technici4n

* Fix cable shape computation. Closes #2435.
* Remove unused import
This commit is contained in:
Technici4n 2021-10-08 07:48:11 +02:00 committed by GitHub
parent 0ddf6688c9
commit f39c619c22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 32 deletions

View file

@ -359,7 +359,7 @@ public class TRContent {
name = this.toString().toLowerCase(Locale.ROOT);
this.transferRate = transferRate;
this.defaultTransferRate = transferRate;
this.cableThickness = cableThickness / 2;
this.cableThickness = cableThickness / 2 / 16;
this.canKill = canKill;
this.defaultCanKill = canKill;
this.tier = tier;