Skip to content

Commit

Permalink
Fixed LADXRSettings initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
hatkirby committed Jun 15, 2024
1 parent 74bdb4f commit a1deec1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion worlds/ladx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import binascii
import dataclasses
import os
import pkgutil
import tempfile
Expand Down Expand Up @@ -118,7 +119,7 @@ class LinksAwakeningWorld(World):
}

def convert_ap_options_to_ladxr_logic(self):
self.ladxr_options = LADXRSettings(self.options.as_dict())
self.ladxr_options = LADXRSettings(dataclasses.asdict(self.options))

self.ladxr_options.validate()
world_setup = LADXRWorldSetup()
Expand Down

0 comments on commit a1deec1

Please sign in to comment.