diff options
author | stuebinm | 2021-12-29 02:44:36 +0100 |
---|---|---|
committer | stuebinm | 2021-12-29 02:44:36 +0100 |
commit | 7675ee189f272fafca637afbe38cf37d00a54433 (patch) | |
tree | 2906e1125781eeb5643de1b06bd1f82315303fda | |
parent | eeb1798880bf9dd37d580d0713987a085b43e385 (diff) |
why aren't boolean values typechecked???
-rw-r--r-- | lib/Properties.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Properties.hs b/lib/Properties.hs index a2a84d6..605f970 100644 --- a/lib/Properties.hs +++ b/lib/Properties.hs @@ -423,7 +423,7 @@ checkTileThing removeExits p@(Property name _value) = case name of requireProperty "openWebsiteTrigger" "url" -> complain "the property \"url\" defining embedded iframes must be \ \set on an object in an objectgroup layer." - "exitUrl" -> if removeExits + "exitUrl" -> if not removeExits then do forbidEmptyLayer unwrapURI (Proxy @"map") p |