diff options
-rw-r--r-- | game/core.rpy | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/game/core.rpy b/game/core.rpy index f24fa53..d28539f 100644 --- a/game/core.rpy +++ b/game/core.rpy @@ -11,7 +11,6 @@ init -3 python: import os.path, os, shutil, subprocess, hashlib, zipfile, pbkdf2 import hmac, struct # non-free imports - import _renpysteam as steam import discord_rpc print("\n[STDBY] Loading Basic functions.......") @@ -142,6 +141,11 @@ init -3 python: persistent.iconify = ifte(renpy.windows, False, True) ############################################################################# + ## Conditional imports + if persistent.steam: + import _renpysteam as steam + + ############################################################################# # ["themanaworld.org", "germantmw.de", "moubootaurlegends.org"] if config.developer: VAULT_HOST = "https://localhost:13370" |