fix: update legal disclaimer in standalone extractor
Footer now reads: "Entropia Nexus is a fan-made resource and is not affiliated with MindArk PE AB. Entropia Universe is a trademark of MindArk PE AB." Also updated header comment with same disclaimer.
This commit is contained in:
parent
eba76cf59c
commit
a30515bf1e
|
|
@ -19,9 +19,8 @@ Discord: impulsivefps
|
||||||
Website: https://EntropiaNexus.com
|
Website: https://EntropiaNexus.com
|
||||||
|
|
||||||
Disclaimer:
|
Disclaimer:
|
||||||
This tool is not affiliated with, endorsed by, or connected to
|
Entropia Nexus is a fan-made resource and is not affiliated with MindArk PE AB.
|
||||||
Entropia Universe or Mindark PE AB in any way.
|
Entropia Universe is a trademark of MindArk PE AB.
|
||||||
Entropia Universe is a registered trademark of Mindark PE AB.
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
@ -459,8 +458,8 @@ class IconExtractorWindow(QMainWindow):
|
||||||
# Footer
|
# Footer
|
||||||
footer = QLabel(
|
footer = QLabel(
|
||||||
f"Developed by {DEVELOPER} | Discord: {DISCORD} | {WEBSITE}\n"
|
f"Developed by {DEVELOPER} | Discord: {DISCORD} | {WEBSITE}\n"
|
||||||
"Not affiliated with or endorsed by Entropia Universe or Mindark PE AB."
|
"Entropia Nexus is a fan-made resource and is not affiliated with MindArk PE AB. "
|
||||||
" Entropia Universe is a trademark of Mindark PE AB."
|
"Entropia Universe is a trademark of MindArk PE AB."
|
||||||
)
|
)
|
||||||
footer.setStyleSheet("color: #555; font-size: 10px; padding: 5px;")
|
footer.setStyleSheet("color: #555; font-size: 10px; padding: 5px;")
|
||||||
footer.setAlignment(Qt.AlignmentFlag.AlignCenter)
|
footer.setAlignment(Qt.AlignmentFlag.AlignCenter)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue