home · contact · privacy
Server: Refactor and fix bugs in in thing proliferation.
[plomrogue] / server / config / thingproliferation.py
index a8382d683718cf3e00977ff903b3d5bfffa23af3..3e55c8baf254db1d771bec0b04467137a21be7b6 100644 (file)
@@ -3,9 +3,9 @@
 # see the file NOTICE in the root directory of the PlomRogue source package.
 
 
-import server.thingproliferation_helpers
+from server.config.world_data import symbols_passable
 
 
-field_spreadable = server.thingproliferation_helpers.field_spreadable
+field_spreadable = lambda x, y: x in symbols_passable
 thingprol_plugin_conditions = lambda x: True
 thingprol_plugin_post_create_hook = lambda x: None