home · contact · privacy
Server, plugin: Refactor thingproliferation (plugin integration).
[plomrogue] / server / config / misc.py
index 8d0b6b0f411765e341cf55cde71fc7671c5cb143..905041efbba5b578127f2ee6b550eeba7b33a505 100644 (file)
@@ -2,10 +2,9 @@
 # or any later version. For details on its copyright, license, and warranties,
 # see the file NOTICE in the root directory of the PlomRogue source package.
 
-from server.make_map import make_map
 from server.thingproliferation import thingproliferation
-from server.make_world import make_world
+from server.decrement_lifepoints import decrement_lifepoints
+from server.calc_effort import calc_effort
 
-make_map_func = make_map
-thingproliferation_func = thingproliferation
-make_world_func = make_world
+decrement_lifepoints_func = decrement_lifepoints
+calc_effort_func = calc_effort