mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-31 01:15:57 -04:00
fixed initialisation of auction items, fixed loading of building signs after server restart
This commit is contained in:
@@ -91,8 +91,9 @@ public class BazaarService implements INetworkDispatch {
|
||||
addAuctionItem((AuctionItem) cursor.next());
|
||||
}
|
||||
auctionItems.stream().map(AuctionItem::getItem).forEach(obj -> {
|
||||
obj.initializeBaselines();
|
||||
obj.initAfterDBLoad();
|
||||
obj.viewChildren(obj, true, true, obj2 -> obj2.initAfterDBLoad());
|
||||
obj.viewChildren(obj, true, true, obj2 -> { obj2.initializeBaselines(); obj2.initAfterDBLoad(); });
|
||||
});
|
||||
cursor.close();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user