Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
Merge pull request #114 from giginet/dusk
Browse files Browse the repository at this point in the history
  • Loading branch information
Naramsim authored Jul 19, 2022
2 parents 16818ba + 04eba43 commit 8e79415
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pokedex/db/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -1809,7 +1809,7 @@ class PokemonEvolution(TableBase):
doc=u"The ID of the location the evolution must be triggered at.")
held_item_id = Column(Integer, ForeignKey('items.id'), nullable=True,
doc=u"The ID of the item the Pokémon must hold.")
time_of_day = Column(Enum('day', 'night', name='pokemon_evolution_time_of_day'), nullable=True,
time_of_day = Column(Enum('day', 'night', "dusk", name='pokemon_evolution_time_of_day'), nullable=True,
doc=u"The required time of day.")
known_move_id = Column(Integer, ForeignKey('moves.id'), nullable=True,
doc=u"The ID of the move the Pokémon must know.")
Expand Down

0 comments on commit 8e79415

Please sign in to comment.