IPVGO: Bugfixes (#1193)

* IPVGO: Explicitly link the generated API documentation in the algorithm design doc
* IPVGO: Fix missing factions in netscript docs
* IPVGO: Linting
* IPVGO: Ensure resetBoardState() logs that a new game has started
This commit is contained in:
Michael Ficocelli
2024-03-28 01:02:53 -04:00
committed by GitHub
parent 8553bcb8fc
commit fe87f1f628
9 changed files with 34 additions and 14 deletions

View File

@@ -68,7 +68,7 @@ export function NetscriptGo(): InternalAPI<NSGo> {
const opponent = getEnumHelper("GoOpponent").nsGetMember(ctx, _opponent);
const boardSize = helpers.number(ctx, "boardSize", _boardSize);
return resetBoardState(error(ctx), opponent, boardSize);
return resetBoardState(logger(ctx), error(ctx), opponent, boardSize);
},
analysis: {
getValidMoves: () => () => {