mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-23 08:03:48 +01:00
Fixed absurdly high skill counter on UI
This commit is contained in:
parent
a05335d6e2
commit
6314000bd0
@ -75,8 +75,11 @@ class NumeralFormatter {
|
||||
}
|
||||
|
||||
formatSkill(n: number): string {
|
||||
if(n < 1e15){
|
||||
return this.format(n, "0,0");
|
||||
}
|
||||
return this.formatAbsurdNumber(n, 3);
|
||||
}
|
||||
|
||||
formatExp(n: number): string {
|
||||
return this.formatAbsurdNumber(n, 3);
|
||||
|
Loading…
Reference in New Issue
Block a user