From: Michael Taktikos <36267869+mtaktikos@users.noreply.github.com> Date: Sat, 9 Oct 2021 13:52:27 +0000 (+0200) Subject: Fixed Betza notation of Breakthrough piece X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=98a2b2ed8261bd14e56a90e07e73de63cd1530bf;p=fairystockfish.git Fixed Betza notation of Breakthrough piece Avoid illegal moves (captures forward) in Breakthrough --- diff --git a/src/piece.cpp b/src/piece.cpp index a5b0703..69bef98 100644 --- a/src/piece.cpp +++ b/src/piece.cpp @@ -205,7 +205,7 @@ void PieceMap::init(const Variant* v) { add(GOLD, from_betza("WfF", "gold")); add(DRAGON_HORSE, from_betza("BW", "dragonHorse")); add(CLOBBER_PIECE, from_betza("cW", "clobber")); - add(BREAKTHROUGH_PIECE, from_betza("fWfFcF", "breakthrough")); + add(BREAKTHROUGH_PIECE, from_betza("fmWfF", "breakthrough")); add(IMMOBILE_PIECE, from_betza("", "immobile")); add(CANNON, from_betza("mRcpR", "cannon")); add(JANGGI_CANNON, from_betza("pR", "janggiCannon"));