Fixed flags slowly moving

This commit is contained in:
theo@manjaro 2021-11-25 14:12:51 +01:00
parent 4bdc9d4b66
commit 475cd8b9e2

View File

@ -6,7 +6,9 @@ class Levels(BaseObject):
def __init__(self,x,y,game,nodes,customvalues):
super().__init__(0,0,game)
self.nodes = nodes
self.nodes = []
for i in nodes:
self.nodes.append(i.copy())
self.customvalues = customvalues
self.bgm = self.game.sound_lib["bgm/overworld.mp3"]