summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-05-09 04:52:21 -0300
committerJesusaves <cpntb1@ymail.com>2021-05-09 04:52:21 -0300
commit8aee552a861faa9ae938e97523f6bfea97bac23d (patch)
tree0e275173c2e6c1506ed6514e6a231033474b3aec
parent3f7e868838bc174e10c7f52ba9c93c73e4b86388 (diff)
downloadrenpy-8aee552a861faa9ae938e97523f6bfea97bac23d.tar.gz
renpy-8aee552a861faa9ae938e97523f6bfea97bac23d.tar.bz2
renpy-8aee552a861faa9ae938e97523f6bfea97bac23d.tar.xz
renpy-8aee552a861faa9ae938e97523f6bfea97bac23d.zip
Warn linux users about the need of libfuse2 to run AppImages.
-rw-r--r--game/client.rpy5
1 files changed, 3 insertions, 2 deletions
diff --git a/game/client.rpy b/game/client.rpy
index 6977de6..4d0bfe0 100644
--- a/game/client.rpy
+++ b/game/client.rpy
@@ -95,8 +95,9 @@ init 1 python:
## Installer
if not MANAPLUS:
- SCR_PROMPT=("Selected client \"%s\" is not installed.\nDo you wish to install it now?\n\n{size=14}By installing you agree with its {a=%s}Terms of Use and Conditions{/a}.{/size}" %
- ("ManaPlus", "https://gitlab.com/themanaworld/manaplus/manaplus/-/raw/master/COPYING"))
+ SCR_PROMPT=("Selected client \"%s\" is not installed.\nDo you wish to install it now?\n\n{size=14}By installing you agree with its {a=%s}Terms of Use and Conditions{/a}.%s{/size}" %
+ ("ManaPlus", "https://gitlab.com/themanaworld/manaplus/manaplus/-/raw/master/COPYING",
+ ifte(renpy.linux, "\n{i}libfuse2{/i} is required to run AppImages.", "")))
while SCR_RESULT is None:
time.sleep(0.02)
ret=copy.copy(SCR_RESULT)