Skip to content

Commit

Permalink
Fix load error
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexProgrammerDE committed Dec 29, 2024
1 parent e56eb80 commit 610a22a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public static void setupLogging(SettingsSource settingsSource) {
private void loadInstances() {
try {
for (var instanceData : sessionFactory.fromTransaction(s ->
s.createQuery("FROM InstanceEntity", InstanceEntity.class)).getResultList()) {
s.createQuery("FROM InstanceEntity", InstanceEntity.class).getResultList())) {
try {
var instance = new InstanceManager(this, instanceData);
SoulFireAPI.postEvent(new InstanceInitEvent(instance));
Expand Down

0 comments on commit 610a22a

Please sign in to comment.