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