home · contact · privacy
Server, plugin: Fix buggy passing of strings to C library.
[plomrogue] / server / config / world_data.py
index dcedabd0529ffdd4f5c51d41c56e3b77d0a205e3..8e5a781dac66acc70b10b4f8555b8e110ee23d0f 100644 (file)
@@ -50,3 +50,8 @@ thingtype_defaults = {
 }
 
 symbols_passable = "."
+symbols_hide = "X"
+
+thingprol_field_spreadable = lambda x, y: x in symbols_passable
+thingprol_test_hook = lambda x: True
+thingprol_post_create_hook = lambda x: None