Update Mysteryhelfer.pyw

This commit is contained in:
tebarius
2024-03-18 09:35:22 +01:00
committed by GitHub
parent bd29361667
commit 1048ce1db2

View File

@@ -4391,7 +4391,7 @@ def rail_decrypt(cipher: str, rails: int):
out = ""
x, y = 0, 0
down = True
for i in range(len(cipher)):
for _ in range(len(cipher)):
out += arr[y][x]
x += 1
if down and y + 1 == rails: