You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
fix more height/weight confusion and whitespacing
This commit is contained in:
@@ -5633,7 +5633,7 @@ class PokedexEntry:
|
|||||||
def to_asm(self):
|
def to_asm(self):
|
||||||
output = """\
|
output = """\
|
||||||
db "{0}" ; species name
|
db "{0}" ; species name
|
||||||
dw {1}, {2} ; weight, height
|
dw {1}, {2} ; height, weight
|
||||||
|
|
||||||
{3}
|
{3}
|
||||||
{4}""".format(self.species, self.weight, self.height, self.page1.to_asm(), self.page2.to_asm())
|
{4}""".format(self.species, self.weight, self.height, self.page1.to_asm(), self.page2.to_asm())
|
||||||
|
Reference in New Issue
Block a user