Merge pull request #1399 from danielyxie/dev

fix infil
This commit is contained in:
hydroflame 2021-10-01 22:27:45 -04:00 committed by GitHub
commit d17a39e891
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 10 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -96,7 +96,7 @@ export function Cyberpunk2077Game(props: IMinigameProps): React.ReactElement {
<br />
{grid.map((line, y) => (
<div key={y}>
<pre>
<Typography>
{line.map((cell, x) => {
if (x == pos[0] && y == pos[1])
return (
@ -110,7 +110,7 @@ export function Cyberpunk2077Game(props: IMinigameProps): React.ReactElement {
</span>
);
})}
</pre>
</Typography>
<br />
</div>
))}

@ -85,7 +85,7 @@ export function MinesweeperGame(props: IMinigameProps): React.ReactElement {
<Typography variant="h4">{memoryPhase ? "Remember all the mines!" : "Mark all the mines!"}</Typography>
{minefield.map((line, y) => (
<div key={y}>
<pre>
<Typography>
{line.map((cell, x) => {
if (memoryPhase) {
if (minefield[y][x]) return <span key={x}>[?]&nbsp;</span>;
@ -96,7 +96,7 @@ export function MinesweeperGame(props: IMinigameProps): React.ReactElement {
return <span key={x}>[&nbsp;]&nbsp;</span>;
}
})}
</pre>
</Typography>
<br />
</div>
))}

@ -98,14 +98,14 @@ export function WireCuttingGame(props: IMinigameProps): React.ReactElement {
{questions.map((question, i) => (
<Typography key={i}>{question.toString()}</Typography>
))}
<pre>
<Typography>
{new Array(wires.length).fill(0).map((_, i) => (
<span key={i}>&nbsp;{i + 1}&nbsp;&nbsp;&nbsp;&nbsp;</span>
))}
</pre>
</Typography>
{new Array(8).fill(0).map((_, i) => (
<div key={i}>
<pre>
<Typography>
{wires.map((wire, j) => {
if ((i === 3 || i === 4) && cutWires[j])
return <span key={j}>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>;
@ -115,7 +115,7 @@ export function WireCuttingGame(props: IMinigameProps): React.ReactElement {
</span>
);
})}
</pre>
</Typography>
</div>
))}
<KeyHandler onKeyDown={press} onFailure={props.onFailure} />