Update picodulce.py

This commit is contained in:
Nix 2024-12-14 22:24:17 -03:00 committed by GitHub
parent 06ddb8936a
commit 33d85e4cb2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -862,11 +862,13 @@ class PicomcVersionSelector(QWidget):
else:
state = f"Playing {self.current_state}"
# Determine the appropriate large image
# Determine the appropriate large image based on the current_state
if "forge" in self.current_state.lower():
large_image = "forge"
elif "fabric" in self.current_state.lower():
large_image = "fabric"
elif "optifine" in self.current_state.lower(): # Check for OptiFine
large_image = "optifine"
else:
large_image = "vanilla" # Default to vanilla if no specific patterns match