fix more height/weight confusion and whitespacing

This commit is contained in:
Bryan Bishop
2012-05-23 19:40:12 -05:00
parent 3d757efd3e
commit 64f52b32ef

View File

@@ -5633,7 +5633,7 @@ class PokedexEntry:
def to_asm(self):
output = """\
db "{0}" ; species name
dw {1}, {2} ; weight, height
dw {1}, {2} ; height, weight
{3}
{4}""".format(self.species, self.weight, self.height, self.page1.to_asm(), self.page2.to_asm())