1
Fork 0
mirror of https://github.com/Steffo99/lihzahrd.git synced 2024-10-16 06:27:29 +00:00

Prefer SCARAB_FISH to UNKNOWN1

This commit is contained in:
Steffo 2023-10-17 19:22:02 +02:00
parent 3e1ce48a7b
commit 2c236edae6

View file

@ -41,13 +41,11 @@ class AnglerQuestFish(enum.IntEnum):
MUDFISH = 36
SLIMEFISH = 37
TROPICAL_BARRACUDA = 38
# none of the other tools know what fish this is ... *shrug*
# we now know it's a SCARAB_FISH; UNKNOWN1 remains for back-compatibility.
UNKNOWN1 = 39
SCARAB_FISH = 39
SCORPIO_FISH = 40
# Backward compatibility
UNKNOWN1 = 39 # SCARAB_FISH
def __repr__(self):
return f"{self.__class__.__name__}.{self.name}"