mirror of
https://github.com/lcdr/luserver.git
synced 2025-12-19 20:49:51 -06:00
v2017.05.14
- added imagination cost to skills - fixed pickup effects - started implementing spider queen battle
This commit is contained in:
@@ -74,8 +74,8 @@ class Init:
|
||||
self.root.level_scores = tuple(i[0] for i in self.cdclient.execute("select requiredUScore from LevelProgressionLookup").fetchall())
|
||||
|
||||
self.root.world_info = BTrees.IOBTree.BTree()
|
||||
for world_id, template in self.cdclient.execute("select zoneID, zoneControlTemplate from ZoneTable"):
|
||||
self.root.world_info[world_id] = template
|
||||
for world_id, script_id, template in self.cdclient.execute("select zoneID, scriptID, zoneControlTemplate from ZoneTable"):
|
||||
self.root.world_info[world_id] = scripts.SCRIPTS.get(script_id), template
|
||||
|
||||
def gen_missions(self):
|
||||
self.root.missions = BTrees.IOBTree.BTree()
|
||||
|
||||
Reference in New Issue
Block a user