diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Properties.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Properties.hs b/lib/Properties.hs index a9bf113..1d87311 100644 --- a/lib/Properties.hs +++ b/lib/Properties.hs @@ -68,6 +68,9 @@ checkMap = do unless (tiledmapTileheight tiledmap == 32 && tiledmapTilewidth tiledmap == 32) $ complain "The map's tile size must be 32 by 32 pixels." + unlessHasProperty "mapCopyright" + $ error "must give the map's copyright via the \"mapCopyright\" property." + -- | Checks a single property of a map. -- -- Doesn't really do all that much, but could in theory be expanded into a |