Parcourir la source

Missed a comma

master
Bryan Miller il y a 6 ans
Parent
révision
293de959f4
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      game/gbe/nodes.py

+ 1
- 1
game/gbe/nodes.py Voir le fichier

@@ -199,7 +199,7 @@ class Node:
def emit(self, signal, data={}):
# NOTE: I'm currently forcing the existance of this "NODE" key in the dictionary given. Not sure if I'll keep this.
data["NODE"] = {
"name":self.name
"name":self.name,
"n":self
}
Events.emit(signal, data)

Chargement…
Annuler
Enregistrer