From a30515bf1eb4c22ed12af907601a5a70badc2c66 Mon Sep 17 00:00:00 2001 From: LemonNexus Date: Wed, 11 Feb 2026 18:13:40 +0000 Subject: [PATCH] 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. --- standalone_icon_extractor.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/standalone_icon_extractor.py b/standalone_icon_extractor.py index e560ba1..871c3f9 100644 --- a/standalone_icon_extractor.py +++ b/standalone_icon_extractor.py @@ -19,9 +19,8 @@ Discord: impulsivefps Website: https://EntropiaNexus.com Disclaimer: - This tool is not affiliated with, endorsed by, or connected to - Entropia Universe or Mindark PE AB in any way. - Entropia Universe is a registered trademark of 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. """ import sys @@ -459,8 +458,8 @@ class IconExtractorWindow(QMainWindow): # Footer footer = QLabel( f"Developed by {DEVELOPER} | Discord: {DISCORD} | {WEBSITE}\n" - "Not affiliated with or endorsed by Entropia Universe or Mindark PE AB." - " Entropia Universe is a trademark of 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." ) footer.setStyleSheet("color: #555; font-size: 10px; padding: 5px;") footer.setAlignment(Qt.AlignmentFlag.AlignCenter)