Skip to content

Commit

Permalink
fix chacks for psm
Browse files Browse the repository at this point in the history
  • Loading branch information
evertonstz committed Jun 13, 2020
1 parent d7d21e8 commit 845ee5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pynps/functions/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -833,11 +833,11 @@ def create_args():
else:
printft(HTML("<red>[ERROR] NPS has no support for avatars with the Playstation Vita (PSV)</red>"))
sys.exit(1)
if "PSM" in a.console and a.avatars == True:
if "PSM" in a.console and True in [a.dlcs, a.themes, a.updates, a.demos, a.avatars]:
if len(a.console) > 1:
printft(HTML("<orange>[WARNING] NPS has no support for avatars with the Playstation Mobile (PSM)</orange>"))
printft(HTML("<orange>[WARNING] NPS only supports game downlaods for the Playstation Mobible (PSM)</orange>"))
else:
printft(HTML("<red>[ERROR] NPS has no support for avatars with the Playstation Mobile (PSM)</red>"))
printft(HTML("<red>[ERROR] NPS only supports game downlaods for the Playstation Mobible (PSM)</red>"))
sys.exit(1)

# limit rate string
Expand Down

0 comments on commit 845ee5e

Please sign in to comment.