Merged in DR v1.2.0.4

This commit is contained in:
codemann8
2023-01-13 04:08:10 -06:00
14 changed files with 231 additions and 88 deletions

View File

@@ -2672,6 +2672,9 @@ class Item(object):
def __unicode__(self):
return self.world.get_name_string_for_object(self) if self.world else f'{self.name} (Player {self.player})'
def __eq__(self, other):
return self.name == other.name and self.player == other.player
# have 6 address that need to be filled
class Crystal(Item):