summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-11-02 19:16:08 -0300
committerJesusaves <cpntb1@ymail.com>2022-11-02 19:16:08 -0300
commit3626f5ac864c2cf9d8a2a9e841ae526ac04b0ce2 (patch)
tree57281d386ca9700aeeb56310e15d1039ffec331e
parentc27333f1f256ebb472eaa1a078fcc86ffa392316 (diff)
downloadrenpy-3626f5ac864c2cf9d8a2a9e841ae526ac04b0ce2.tar.gz
renpy-3626f5ac864c2cf9d8a2a9e841ae526ac04b0ce2.tar.bz2
renpy-3626f5ac864c2cf9d8a2a9e841ae526ac04b0ce2.tar.xz
renpy-3626f5ac864c2cf9d8a2a9e841ae526ac04b0ce2.zip
This should fix the infinite reinstall bug
-rw-r--r--game/client.rpy2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/client.rpy b/game/client.rpy
index df5b4c2..2869375 100644
--- a/game/client.rpy
+++ b/game/client.rpy
@@ -200,7 +200,7 @@ init 2 python:
## Ours
try:
- md5us=md5sum(installdir+"/%s" % fname)
+ md5us=md5sum(fname) #(installdir+"/%s" % fname)
if md5up != md5us:
stdout("MD5 Mismatch: hashes differ", True)
stdout("Ours: %s" % md5us, True)