Compare commits

..

No commits in common. "1a70aff3bc62a4d35520274a7858704b52bea0c1" and "e88fda5a2c923f6137881867c3419492a3e37e29" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ init python:
self.build_image() self.build_image()
states.dolls[name] = self renpy.store.states.dolls[name] = self
def generate_hash(self): def generate_hash(self):
clothes_hash = str([x[0]._hash for x in self.states.values() if istype(x[0], (DollCloth, DollClothDynamic, DollMakeup)) and x[2]]) clothes_hash = str([x[0]._hash for x in self.states.values() if istype(x[0], (DollCloth, DollClothDynamic, DollMakeup)) and x[2]])

View File

@ -23,7 +23,7 @@ init -1 python:
def get_character_object(key): def get_character_object(key):
__check_exists(key) __check_exists(key)
return states.dolls[key] return getattr(store, key)
def get_character_outfit(key, typ="default"): def get_character_outfit(key, typ="default"):
__check_exists(key) __check_exists(key)