diff options
-rw-r--r-- | lib/Properties.hs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/Properties.hs b/lib/Properties.hs index 551c502..75b69ae 100644 --- a/lib/Properties.hs +++ b/lib/Properties.hs @@ -499,6 +499,17 @@ checkTileLayerProperty p@(Property name _value) = case name of isString p requireProperty "bellVariable" + -- | these properties are used by the extended script to allow action zonesĀ¶ + "bindVariable" -> do + isString p + requireProperty "zone" + "enterValue" -> do + isString p + requireProperty "bindVariable" + "leaveValue" -> do + isString p + requireProperty "bindVariable" + -- name on tile layer unsupported "name" -> isUnsupported |