summaryrefslogtreecommitdiff
path: root/extras/crystal.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2012-04-21 23:37:02 -0500
committerBryan Bishop <kanzure@gmail.com>2012-04-21 23:37:02 -0500
commitc33c15befbd3d957d89af11425c7be80c73a62f0 (patch)
tree9838adfd4c7ac8a137ec7f2cccc14902f3bfe5d2 /extras/crystal.py
parent4f683d642176ed57fc8c27f08849cdf4065ef612 (diff)
remove duplicates from Asm output
Diffstat (limited to 'extras/crystal.py')
-rw-r--r--extras/crystal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/crystal.py b/extras/crystal.py
index a66eb7df3..6187a0b1b 100644
--- a/extras/crystal.py
+++ b/extras/crystal.py
@@ -4615,7 +4615,7 @@ class Asm:
else: #assume incbins[1].replace_me (the middle one)
index = 1
#replace that index with the new_object
- incbins[index] = to_asm(new_object)
+ incbins[index] = new_object
#insert these incbins into self.parts
gindex = self.parts.index(object)
self.parts = self.parts[:gindex] + incbins + self.parts[gindex:]