summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2018-07-12 17:48:41 +0200 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2018-07-12 17:48:41 +0200 |
commit | a132188ccc244a6d802bd1c32fbf196d4cb53cbd (patch) | |
tree | bd54e576ea8164d3efc801d9c56420218a74e591 /src/map/map_shim.erl | |
parent | b853df7a1c3efef6b84b90fe8c492611564f8b53 (diff) |
Got it to load the map (full of "error" tiles).
Diffstat (limited to 'src/map/map_shim.erl')
-rw-r--r-- | src/map/map_shim.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map_shim.erl b/src/map/map_shim.erl index 08034e4..ef23027 100644 --- a/src/map/map_shim.erl +++ b/src/map/map_shim.erl @@ -54,6 +54,6 @@ demo_map () -> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -spec generate_random_map () -> map_map:type(). generate_random_map () -> - Map = map_map:from_list(<<"0">>, <<"0">>, 32, 32, demo_map()), + Map = map_map:from_list(0, <<"0">>, 32, 32, demo_map()), Map. |