diff --git a/src/palworld_pal_editor/core/pal_objects.py b/src/palworld_pal_editor/core/pal_objects.py index c63630e..40d3c0c 100644 --- a/src/palworld_pal_editor/core/pal_objects.py +++ b/src/palworld_pal_editor/core/pal_objects.py @@ -114,11 +114,11 @@ def BoolProperty(value: bool): return {"value": value, "id": None, "type": "BoolProperty"} @staticmethod - def ByteProperty(value: Any, type: str = None): + def ByteProperty(value: Any, type: str = 'None'): return {"value": { "type": type, "value": value - }, "id": "None", "type": "ByteProperty"} + }, "id": None, "type": "ByteProperty"} @staticmethod def get_BaseType(container: dict) -> Optional[Any]: