home · contact · privacy
Server, plugin: Refactor make_world modularity.
[plomrogue] / server / config / misc.py
index bcec1fa99ced52a8833c23927eafa93222d15ff3..05fbe50174db9203629979e0324f92de70e828bd 100644 (file)
@@ -2,14 +2,10 @@
 # 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
 
 decrement_lifepoints_func = decrement_lifepoints
-make_map_func = make_map
 thingproliferation_func = thingproliferation
-make_world_func = make_world
 calc_effort_func = calc_effort