Sfoglia il codice sorgente

Fix incorrect class invocation.

master
Ben Kurtovic 6 anni fa
parent
commit
12d0f3be9b
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      calefaction/eve/universe.py

+ 1
- 1
calefaction/eve/universe.py Vedi 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):


Caricamento…
Annulla
Salva