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:
LemonNexus 2026-02-11 18:13:40 +00:00
parent eba76cf59c
commit a30515bf1e
1 changed files with 4 additions and 5 deletions

View File

@ -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)