aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/Server/Server.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/Server/Server.scala')
-rw-r--r--src/main/scala/Server/Server.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/scala/Server/Server.scala b/src/main/scala/Server/Server.scala
index 230fe59..4a984a5 100644
--- a/src/main/scala/Server/Server.scala
+++ b/src/main/scala/Server/Server.scala
@@ -104,7 +104,9 @@ class Server(
private def writeObservations(): Unit =
this.clients.foreach(c =>
val observations = c.player.map(_.readAndClearObservations())
- observations.foreach(_.foreach((s: String) => this.writeToClient(s"$s\r\n", c)))
+ observations.foreach(_.foreach((s: String) =>
+ this.writeToClient(s"$ACTION_NONBLOCKING_INDICATOR$s\r\n", c))
+ )
)
/** Helper function to determine if the next turn can be taken */