Update mvDecryptor.py

This commit is contained in:
Silica 2018-01-25 21:02:15 +13:00 committed by GitHub
parent e7d2cac919
commit 5d1750bfeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ def decryptFilename(encryptedFilename): # Function for "Decrypting" a filename
if encryptedFilename.endswith(".rpgmvo"): # If file extension is .rpgmvo
return encryptedFilename[:-7]+".ogg" # Make .ogg file.
if encryptedFilename.endswith(".rpgmvm"): # If file extension is .rpgmvm
return encryptedFilename[:-7] + ".mp3" # Make .mp3 file.
return encryptedFilename[:-7] + ".m4a" # Make .m4a file.
if encryptedFilename.endswith(".rpgmvp"): # If file extension is .rpgmvp
return encryptedFilename[:-7] + ".png" # Make .png file.