diff --git a/locales/en/apgames.json b/locales/en/apgames.json index 2ad0a19d..8a3797d6 100644 --- a/locales/en/apgames.json +++ b/locales/en/apgames.json @@ -138,7 +138,7 @@ "omny": "Generalized connection game where players try to split star cells into different regions so that no single region contains a majority of star cells.", "onager": "In Onager each player tries to reach the opponent's back rank. Onager is named after a Roman siege engine that is a type of catapult, as the way the pieces move resembles how projectiles are hurled forward with this device.", "onyx": "A connection game on a modified snub-square board with a capture rule.", - "oonpia": "A hexagonal go-like where pieces come in two types. Only pieces of opposite type are connected, and a 4-arc of pieces of the same type (regardless of colour) is forbidden.", + "oonpia": "A hexagonal go-like where pieces come in two types. Only pieces of opposite type are connected, and a 4-arc of pieces of the same type (regardless of colour) is forbidden. Either use the legend to select a piece, or click the same location multiple times to cycle through all possible pieces.", "orb": "Generatorb is 2-player game played on a standard chess board. Players start in opposite corners and attempt to reach their opponent's generator core or occupy the majority of cells on the front line. During play, you can stack up to three checkers in a space. Stacks of different heights behave differently, leading to engaging strategic options.", "ordo": "Ordo is a \"get to your opponent's home row\" game in which you must always keep your pieces connected. Pieces can move singly and also as a group in certain situations. You can also win by breaking up your opponent's group in such a way that they can't reconnect it.", "oust": "Oust is the classic \"exnihilation\" game where the game starts with an empty board and the goal is to eliminate all of your opponent's pieces. On your turn, you may make multiple capturing placements if available, but you must end it with a non-capturing placement. You must pass if you are not able to make any placements.", diff --git a/src/games/oonpia.ts b/src/games/oonpia.ts index cf35e639..989973d7 100644 --- a/src/games/oonpia.ts +++ b/src/games/oonpia.ts @@ -582,7 +582,7 @@ export class OonpiaGame extends GameBase { if (this.isValidCapture(move.cell, move.tile)) { return { valid: true, - complete: 1, + complete: 0, message: i18next.t("apgames:validation._general.VALID_MOVE") } } else { @@ -595,7 +595,7 @@ export class OonpiaGame extends GameBase { if (this.isValidPlace(move.cell, move.tile)) { return { valid: true, - complete: 1, + complete: 0, message: i18next.t("apgames:validation._general.VALID_MOVE") } } else {