mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-04-04 17:31:29 +02:00
Fix indentation
This commit is contained in:
@ -5,10 +5,9 @@
|
||||
export function favorToRep(f: number): number {
|
||||
const raw = 25000 * (Math.pow(1.02, f) - 1);
|
||||
return Math.round(raw * 10000) / 10000; // round to make things easier.
|
||||
}
|
||||
}
|
||||
|
||||
export function repToFavor(r: number): number {
|
||||
export function repToFavor(r: number): number {
|
||||
const raw = Math.log(r / 25000 + 1) / Math.log(1.02);
|
||||
return Math.round(raw * 10000) / 10000; // round to make things easier.
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user