diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-04-22 14:04:27 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-04-22 14:04:27 -0500 |
commit | fdbf484b579c763d4a015768295a0fce8c430e76 (patch) | |
tree | ab4fc4687f281579b9d35945b3f95f199bcdde5a | |
parent | c8b4c3203c8551f8ca835b35e4ad81a8f47900bd (diff) |
prevent scripts from appearing in MapScriptHeader.to_asm output
-rw-r--r-- | extras/crystal.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/crystal.py b/extras/crystal.py index 239ddff83..d7c68c3ba 100644 --- a/extras/crystal.py +++ b/extras/crystal.py @@ -3406,7 +3406,7 @@ class MapScriptHeader: return True def get_dependencies(self): - dependencies = self.triggers + dependencies = copy(self.triggers) for p in list(dependencies): dependencies.extend(p.get_dependencies()) for callback in self.callbacks: @@ -4655,7 +4655,7 @@ class Asm: fh.write(each.to_asm()+"\n") else: #print "each is: " + str(each) - fh.write(to_asm(each)) + fh.write(to_asm(each)+"\n") else: fh.write(each + "\n") |