Sneak Ability Now Puts Spy in Stealth

Tested and worked.
This commit is contained in:
Mesagoppinmypants
2014-05-06 20:44:13 -04:00
parent 892f9cb7db
commit a051bc4d2c
+14
View File
@@ -0,0 +1,14 @@
import sys
def setup(core, actor, buff):
return
def add(core, actor, buff):
actor.setInStealth(True)
actor.setRadarVisible(False)
return
def remove(core, actor, buff):
actor.setInStealth(False)
actor.setRadarVisible(True)
return