summaryrefslogtreecommitdiff
path: root/game/script.rpy
diff options
context:
space:
mode:
Diffstat (limited to 'game/script.rpy')
-rw-r--r--game/script.rpy12
1 files changed, 1 insertions, 11 deletions
diff --git a/game/script.rpy b/game/script.rpy
index 9391ecb..3c81e7e 100644
--- a/game/script.rpy
+++ b/game/script.rpy
@@ -115,10 +115,7 @@ label login:
for a in inv:
Player["inv"].append(a)
- # Run AP Timer if needed (FIXME)
- if (Player["ap"] < Player["max_ap"]):
- ApTimer=Timer(360.0, ap_restore)
- ApTimer.start()
+ # TODO: Run AP Timer if needed
# Remove some temporary variables
$ del password
@@ -241,13 +238,6 @@ label prologue:
label quit:
$ stdout("Received quit signal!")
python:
- # Delete ApTimer
- try:
- ApTimer.cancel()
- del ApTimer
- except:
- pass
-
# If needed, logout
try:
token=Player["token"]