Move sprites back to ./data

This commit is contained in:
Mike A. Trethewey
2021-01-08 03:31:21 -08:00
parent bca36d79ac
commit 46420f10af
5 changed files with 3 additions and 3 deletions

View File

@@ -235,7 +235,7 @@ class SpriteSelector(object):
@property
def local_official_sprite_dir(self):
return local_path(os.path.join(".","resources","app","meta","sprites","official"))
return local_path(os.path.join(".","data","sprites","official"))
@property
def unofficial_sprite_dir(self):
@@ -243,7 +243,7 @@ class SpriteSelector(object):
@property
def local_unofficial_sprite_dir(self):
return local_path(os.path.join(".","resources","app","meta","sprites","unofficial"))
return local_path(os.path.join(".","data","sprites","unofficial"))
def get_image_for_sprite(sprite):