Skip to content

Commit

Permalink
Merge pull request #43 from strategineer/fix_missing_self
Browse files Browse the repository at this point in the history
Fix missing self to access linedefs instance variable
  • Loading branch information
devinacker authored May 23, 2023
2 parents 3b72a2d + 3be32fa commit 726fb97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omg/mapedit.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def to_lumps(self):
m["_HEADER_"] = self.header
m["VERTEXES"] = Lump(join([x.pack() for x in self.vertexes]))
m["THINGS" ] = Lump(join([x.pack() for x in self.things ]))
m["LINEDEFS"] = Lump(join([x.pack() for x in linedefs ]))
m["LINEDEFS"] = Lump(join([x.pack() for x in self.linedefs]))
m["SIDEDEFS"] = Lump(join([x.pack() for x in self.sidedefs]))
m["SECTORS" ] = Lump(join([x.pack() for x in self.sectors ]))
m["NODES"] = Lump(join([x.pack() for x in self.nodes ]))
Expand Down

0 comments on commit 726fb97

Please sign in to comment.