Skip to content

Commit

Permalink
Fix missing self to access linedefs instance variable
Browse files Browse the repository at this point in the history
  • Loading branch information
strategineer committed May 23, 2023
1 parent 3b72a2d commit 3be32fa
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 3be32fa

Please sign in to comment.