home · contact · privacy
Server, plugin: Refactor thingproliferation (plugin integration).
[plomrogue] / server / thingproliferation_helpers.py
1 # This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
2 # or any later version. For details on its copyright, license, and warranties,
3 # see the file NOTICE in the root directory of the PlomRogue source package.
4
5
6 from server.config.world_data import symbols_passable
7
8
9 def field_spreadable(field_type, ignore):
10     return field_type in symbols_passable
11
12 def thingprol_plugin_conditions(ignore):
13     return True
14
15 def thingprol_plugin_post_create_hook(ignore):
16     pass