aboutsummaryrefslogtreecommitdiff
path: root/behaviors/DecayBehavior.py
diff options
context:
space:
mode:
Diffstat (limited to 'behaviors/DecayBehavior.py')
-rw-r--r--behaviors/DecayBehavior.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/behaviors/DecayBehavior.py b/behaviors/DecayBehavior.py
index edc833d..56e1686 100644
--- a/behaviors/DecayBehavior.py
+++ b/behaviors/DecayBehavior.py
@@ -1,5 +1,6 @@
from operationscore.Behavior import *
from pixelevents.DecayEvent import *
+import util.Strings as Strings
import Util
import pdb
class DecayBehavior(Behavior):
@@ -7,7 +8,7 @@ class DecayBehavior(Behavior):
ret = []
for sensory in sensorInputs:
outDict = {}
- outDict[Util.location] = sensory[Util.location]
+ outDict[Strings.LOCATION] = sensory[Strings.LOCATION]
outDict['PixelEvent'] = \
DecayEvent.generate(self['DecayType'],self['Coefficient'], sensory['Color'])
ret.append(outDict)