Register Trumpet as savable entity

This commit is contained in:
Yohann D'ANELLO 2020-12-18 18:13:39 +01:00
parent 0394c5d15d
commit b876dab156
1 changed files with 3 additions and 1 deletions

View File

@ -435,7 +435,8 @@ class Entity:
from squirrelbattle.entities.player import Player
from squirrelbattle.entities.monsters import Tiger, Hedgehog, Rabbit, \
TeddyBear
from squirrelbattle.entities.friendly import Merchant, Sunflower
from squirrelbattle.entities.friendly import Merchant, Sunflower, \
Trumpet
from squirrelbattle.entities.items import BodySnatchPotion, Bomb, \
Heart, Sword
return {
@ -450,6 +451,7 @@ class Entity:
"Merchant": Merchant,
"Sunflower": Sunflower,
"Sword": Sword,
"Trumpet": Trumpet,
}
def save_state(self) -> dict: