浏览代码

Fix incorrect class invocation.

master
Ben Kurtovic 6 年前
父节点
当前提交
12d0f3be9b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      calefaction/eve/universe.py

+ 1
- 1
calefaction/eve/universe.py 查看文件

@@ -409,7 +409,7 @@ class Universe:
"""
self._load()
if tid not in self._types:
return _DummyKillable(self)
return _DummyType(self)
return _Type(self, tid, self._types[tid])

def killable(self, kid):


正在加载...
取消
保存