Revise server code + a few fixes in trnalsations and ComputerGame
[vchess.git] / client / src / data / problemCheck.js
index 652daae..d0978cb 100644 (file)
@@ -2,7 +2,7 @@ export function checkProblem(p) {
   const vid = parseInt(p.vid);
   if (isNaN(vid) || vid <= 0) return "Please select a variant";
 
-  if (!V.IsGoodFen(p.fen)) return "Bad FEN string";
+  if (!V.IsGoodFen(p.fen)) return "Errors in FEN";
 
   return "";
 }