From 12d0f3be9b2a7c0607128c8ebcd2baf56472489b Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Fri, 10 Nov 2017 23:52:00 -0600 Subject: [PATCH] Fix incorrect class invocation. --- calefaction/eve/universe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calefaction/eve/universe.py b/calefaction/eve/universe.py index 38d7fc8..abbfa01 100644 --- a/calefaction/eve/universe.py +++ b/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):