Friendly entities can now talk to the player, a sunflower entity was added to test this new feature. Related to issue #22

This commit is contained in:
eichhornchen
2020-11-27 18:35:52 +01:00
parent d987e60006
commit fbd9f0045b
5 changed files with 39 additions and 8 deletions

View File

@ -112,4 +112,4 @@ class VariableMenuDisplay(MenuDisplay):
def values(self) -> List[str]:
return [a[1][1] + (" : "
+ (a[1][0])
if a[1][0] else "" for a in self.menu.values]
if a[1][0] else "") for a in self.menu.values]

View File

@ -54,6 +54,7 @@ TexturePack.ASCII_PACK = TexturePack(
BEAVER='_',
TEDDY_BEAR='8',
MERCHANT='M',
SUNFLOWER='I',
)
TexturePack.SQUIRREL_PACK = TexturePack(
@ -74,4 +75,5 @@ TexturePack.SQUIRREL_PACK = TexturePack(
BEAVER='🦫',
TEDDY_BEAR='🧸',
MERCHANT='🦜',
SUNFLOWER='🌻',
)