Reify shoptrait

This commit is contained in:
fullwall 2022-03-04 22:14:28 +08:00
parent ae36f4bd9f
commit 51cecf9cff

View File

@ -69,8 +69,8 @@ public class ShopTrait extends Trait {
private String title;
}
@Persist(value = "npcShops", namespace = "shopstrait")
@Persist(value = "npcShops", reify = true, namespace = "shopstrait")
private static Map<String, NPCShop> NPC_SHOPS = Maps.newHashMap();
@Persist(value = "namedShops", namespace = "shopstrait")
@Persist(value = "namedShops", reify = true, namespace = "shopstrait")
private static Map<String, NPCShop> SHOPS = Maps.newHashMap();
}