mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-20 13:15:48 +01:00
Fix SF3 listed with a limit level of infinity
This commit is contained in:
parent
4145ddad39
commit
c8377c0bb3
@ -6,7 +6,7 @@
|
||||
import { IMap } from "./types";
|
||||
|
||||
export let CONSTANTS: IMap<any> = {
|
||||
Version: "0.47.3",
|
||||
Version: "0.48.0",
|
||||
|
||||
/** Max level for any skill, assuming no multipliers. Determined by max numerical value in javascript for experience
|
||||
* and the skill level formula in Player.js. Note that all this means it that when experience hits MAX_INT, then
|
||||
@ -228,11 +228,11 @@ export let CONSTANTS: IMap<any> = {
|
||||
|
||||
LatestUpdate:
|
||||
`
|
||||
v0.47.3
|
||||
v0.48.0
|
||||
-------
|
||||
|
||||
Misc.
|
||||
* missing ram cost in many function now added to documentation
|
||||
* typos
|
||||
* Fixed an issue where SF3 was listed as infinitly repeatable and SF12 as
|
||||
having a limit of 3.
|
||||
`
|
||||
}
|
||||
|
@ -16,7 +16,7 @@ type IProps = {
|
||||
}
|
||||
|
||||
export function SourceFileAccordion(props: IProps): React.ReactElement {
|
||||
const maxLevel = props.sf.n === 3 ? "∞" : "3";
|
||||
const maxLevel = props.sf.n === 12 ? "∞" : "3";
|
||||
|
||||
return (
|
||||
<Accordion
|
||||
|
Loading…
Reference in New Issue
Block a user