Re-changed familiar's inheritance from friendlyEntity to FightingEntity (just a leftover from debug)
This commit is contained in:
parent
505e0a4efb
commit
de3aba396d
|
@ -1,4 +1,4 @@
|
||||||
from ..interfaces import FriendlyEntity, InventoryHolder, FightingEntity, Map
|
from ..interfaces import FriendlyEntity, InventoryHolder, Map, FightingEntity
|
||||||
from ..translations import gettext as _
|
from ..translations import gettext as _
|
||||||
from .player import Player
|
from .player import Player
|
||||||
from .monsters import Monster
|
from .monsters import Monster
|
||||||
|
@ -55,7 +55,7 @@ class Sunflower(FriendlyEntity):
|
||||||
return [_("Flower power!!"), _("The sun is warm today")]
|
return [_("Flower power!!"), _("The sun is warm today")]
|
||||||
|
|
||||||
|
|
||||||
class Familiar(FriendlyEntity): #FightingEntity
|
class Familiar(FightingEntity):
|
||||||
"""
|
"""
|
||||||
A friendly familiar that helps the player defeat monsters.
|
A friendly familiar that helps the player defeat monsters.
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue