projects
/
zzz-pokedex.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix ancient bug with Pursuit description. #569
[zzz-pokedex.git]
/
pokedex
/
db
/
tables.py
diff --git
a/pokedex/db/tables.py
b/pokedex/db/tables.py
index
d56bf65
..
1c1db60
100644
(file)
--- a/
pokedex/db/tables.py
+++ b/
pokedex/db/tables.py
@@
-264,7
+264,7
@@
class EggGroup(TableBase):
create_translation_table('egg_group_prose', EggGroup, 'names',
name = Column(Unicode(16), nullable=False, index=True,
create_translation_table('egg_group_prose', EggGroup, 'names',
name = Column(Unicode(16), nullable=False, index=True,
- info=dict(description="The name", format='plaintext', official=
Fals
e)),
+ info=dict(description="The name", format='plaintext', official=
Tru
e)),
)
class Encounter(TableBase):
)
class Encounter(TableBase):
@@
-1557,7
+1557,7
@@
class SuperContestEffect(TableBase):
create_translation_table('super_contest_effect_prose', SuperContestEffect, 'prose',
flavor_text = Column(Unicode(64), nullable=False,
create_translation_table('super_contest_effect_prose', SuperContestEffect, 'prose',
flavor_text = Column(Unicode(64), nullable=False,
- info=dict(description=u"A description of the effect.", format='plaintext')),
+ info=dict(description=u"A description of the effect.", format='plaintext'
, official=True
)),
)
)