summaryrefslogtreecommitdiff
path: root/game/misc.rpy
diff options
context:
space:
mode:
Diffstat (limited to 'game/misc.rpy')
-rw-r--r--game/misc.rpy35
1 files changed, 0 insertions, 35 deletions
diff --git a/game/misc.rpy b/game/misc.rpy
index da7c95b..f52664c 100644
--- a/game/misc.rpy
+++ b/game/misc.rpy
@@ -162,41 +162,6 @@ init python:
# Result loot in icons
# Weekly event switcher (Raids, etc. → events.py)
-
- # SSL ciphers from urllib3
- DEFAULT_CIPHERS = ":".join(
- [
- "ECDHE+AESGCM",
- "ECDHE+CHACHA20",
- "DHE+AESGCM",
- "DHE+CHACHA20",
- "ECDH+AESGCM",
- "DH+AESGCM",
- "ECDH+AES",
- "DH+AES",
- "RSA+AESGCM",
- "RSA+AES",
- "!aNULL",
- "!eNULL",
- "!MD5",
- "!DSS",
- ]
- )
-
- # Some old code using Queues
- q = Queue.Queue()
- t = threading.Thread(target=lambda w, packet, ags: w.put(send_packet_now(packet, ags)), args=(q, packet, args))
- t.start()
- t.join(3.0)
- print "getting value"
- # We either received a reply or timeout:
- # In case of a timeout, keep trying
- while (t.isAlive()):
- renpy.call_screen("msgbox", "Error Code: %d\n\nApplication timeout, click to try again" % (ERR_TIMEOUT))
- t.join(3.0)
- #return ERR_TIMEOUT
- val=q.get()
-
"""
label clear_all: