diff options
author | Joel Kronqvist <joel.kronqvist@iki.fi> | 2024-11-14 19:52:24 +0200 |
---|---|---|
committer | Joel Kronqvist <joel.kronqvist@iki.fi> | 2024-11-14 19:52:24 +0200 |
commit | ea18a265a22ffc4c3f6ec3ca9d2f542552da9705 (patch) | |
tree | d1c9c832d9fdb2592227c5a05254a28d178a0efd /src/main/scala/Model/Adventure.scala | |
parent | a43812ed462630850edbf29bda182fbf1e5e1263 (diff) | |
download | scalevalapokalypsi-ea18a265a22ffc4c3f6ec3ca9d2f542552da9705.tar.gz scalevalapokalypsi-ea18a265a22ffc4c3f6ec3ca9d2f542552da9705.zip |
Added immediate turn start for client, required minor protocol tweak
Diffstat (limited to 'src/main/scala/Model/Adventure.scala')
-rw-r--r-- | src/main/scala/Model/Adventure.scala | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main/scala/Model/Adventure.scala b/src/main/scala/Model/Adventure.scala index 01f5d13..4d0a256 100644 --- a/src/main/scala/Model/Adventure.scala +++ b/src/main/scala/Model/Adventure.scala @@ -11,9 +11,6 @@ import scala.collection.mutable.Map * games, you will need to modify or replace the source code of this class. */ class Adventure(val playerNames: Vector[String]): - /** the name of the game */ - val title = "A Forest Adventure" - private val middle = Area("Forest", "You are somewhere in the forest. There are a lot of trees here.\nBirds are singing.") private val northForest = Area("Forest", "You are somewhere in the forest. A tangle of bushes blocks further passage north.\nBirds are singing.") private val southForest = Area("Forest", "The forest just goes on and on.") |