summaryrefslogtreecommitdiff
path: root/game/misc.rpy
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-12-16 15:00:06 -0300
committerJesusaves <cpntb1@ymail.com>2020-12-16 15:00:06 -0300
commit12642033562b78537262a8ccbef0f0e6d9cd1570 (patch)
tree0b1cc6b493e949f9df78283913df715a017fb4e6 /game/misc.rpy
parentd20ec3e8dbc203e950e7f98445086378bb7a1abf (diff)
downloadclient-12642033562b78537262a8ccbef0f0e6d9cd1570.tar.gz
client-12642033562b78537262a8ccbef0f0e6d9cd1570.tar.bz2
client-12642033562b78537262a8ccbef0f0e6d9cd1570.tar.xz
client-12642033562b78537262a8ccbef0f0e6d9cd1570.zip
Clean up some old comments
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: