Browse Source

Fix incorrect class invocation.

master
Ben Kurtovic 6 years ago
parent
commit
12d0f3be9b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      calefaction/eve/universe.py

+ 1
- 1
calefaction/eve/universe.py View File

@@ -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):


Loading…
Cancel
Save