mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-25 10:42:51 +02:00
Vigilante Justice now reduces wanted by a percentage to help players stuck with very high wanted level.
This commit is contained in:
@@ -40,7 +40,7 @@ export class CodingContractPopup extends React.Component<IProps, IState>{
|
||||
|
||||
render(): React.ReactNode {
|
||||
const contractType: CodingContractType = CodingContractTypes[this.props.c.type];
|
||||
let description = [];
|
||||
const description = [];
|
||||
for (const [i, value] of contractType.desc(this.props.c.data).split('\n').entries())
|
||||
description.push(<span key={i} dangerouslySetInnerHTML={{__html: value+'<br />'}}></span>);
|
||||
return (
|
||||
|
||||
@@ -17,7 +17,7 @@ type IState = {
|
||||
export class CopyableText extends React.Component<IProps, IState> {
|
||||
public static defaultProps = {
|
||||
//Default span to prevent destroying current clickables
|
||||
tag: ClickableTag.Tag_span
|
||||
tag: ClickableTag.Tag_span,
|
||||
};
|
||||
|
||||
constructor(props: IProps) {
|
||||
|
||||
Reference in New Issue
Block a user