bugfix API

This commit is contained in:
2025-09-18 15:33:20 +02:00
parent 45444e48bd
commit bb2b77d208
2 changed files with 3 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ public abstract class AbstractBoard implements IBoard{
// Beware not checking if history is not empty
// To be used in undo()
private void removePlyFromHistory(){
return this.history.removeLast();
this.history.removeLast();
}