diff --git a/src/zenkit/daedalus_script.py b/src/zenkit/daedalus_script.py index b40ac40..44926ea 100644 --- a/src/zenkit/daedalus_script.py +++ b/src/zenkit/daedalus_script.py @@ -125,7 +125,7 @@ def set_string(self, val: str, i: int = 0, ctx: DaedalusInstance | None = None) ) def get_int(self, i: int = 0, ctx: DaedalusInstance | None = None) -> int: - return DLL.ZkDaedalusSymbol_getInt(self._handle, c_uint16(i), ctx.handle if ctx else None).value + return DLL.ZkDaedalusSymbol_getInt(self._handle, c_uint16(i), ctx.handle if ctx else None) def set_int(self, val: int, i: int = 0, ctx: DaedalusInstance | None = None) -> None: DLL.ZkDaedalusSymbol_setInt(self._handle, c_int32(val), c_uint16(i), ctx.handle if ctx else None)