first round with stan

This commit is contained in:
nek0 2024-11-04 10:58:51 +01:00
parent 56590056f2
commit 01bdb2ac8f
3 changed files with 2 additions and 6 deletions

View file

@ -35,13 +35,11 @@ import Linear
import Network.Socket import Network.Socket
import System.Random (randomRIO)
-- internal imports -- internal imports
import Library.Types import Library.Types
import Server.Log (logPrintIO, logPrint) import Server.Log (logPrintIO)
import Server.Types import Server.Types
-- | Sends a specified message through given socket to the client -- | Sends a specified message through given socket to the client

View file

@ -41,7 +41,7 @@ generateArena arenaRows arenaColumns spawnerChance = do
: acc : acc
else else
pure acc pure acc
_ -> pure acc _otherTiles -> pure acc
) )
[] []
((,) <$> [1 .. arenaRows] <*> map fromIntegral [1 .. arenaColumns]) ((,) <$> [1 .. arenaRows] <*> map fromIntegral [1 .. arenaColumns])

View file

@ -15,8 +15,6 @@ extra-doc-files: CHANGELOG.md
common warnings common warnings
ghc-options: -Wall -threaded -rtsopts ghc-options: -Wall -threaded -rtsopts
-fwrite-ide-info
-hiedir=.hie
library library
import: warnings import: warnings