mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 06:18:42 +02:00
Fixed absurdly high skill counter on UI
This commit is contained in:
@@ -75,7 +75,10 @@ class NumeralFormatter {
|
||||
}
|
||||
|
||||
formatSkill(n: number): string {
|
||||
return this.format(n, "0,0");
|
||||
if(n < 1e15){
|
||||
return this.format(n, "0,0");
|
||||
}
|
||||
return this.formatAbsurdNumber(n, 3);
|
||||
}
|
||||
|
||||
formatExp(n: number): string {
|
||||
|
||||
Reference in New Issue
Block a user