From ae6cb5bcb3cfabd9caeff26cbfd755ddf9ef0647 Mon Sep 17 00:00:00 2001 From: connlost <4348524953.h@gmail.com> Date: Sun, 24 Mar 2024 01:23:06 +0800 Subject: [PATCH] [release] 0.3.4 Hopefully We Don't Crash on Game Update - Better Missing Data Handling - Updated Pal & Human Data, Icons --- README.md | 6 +++--- pyproject.toml | 2 +- src/palworld_pal_editor/api/pal.py | 6 +++--- src/palworld_pal_editor/config.py | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 8138278..755aac8 100644 --- a/README.md +++ b/README.md @@ -56,8 +56,8 @@ - [x] Spawn Pal - [x] Duplicate Pal - [x] Delete Pal -- [x] Show / hide pals that are not in player pal containers (e.g. Pals in viewing cage, (or taken away by other player, prior palworld v0.1.5)) -- [x] Show (so you can delete them) / hide pals that are not displayed in game. +- [x] Show / Hide pals that are not in player pal containers (e.g. Pals in viewing cage, (or taken away by other players, prior Palworld v0.1.5)) +- [x] Show (so you can delete them) / hide pals that are not displayed in game (Ghost Pals). - [x] Unlock Viewing Cage for Selected player (multiplayer server) - [x] List Players and Pals - [x] Inspect Pal Stats @@ -79,7 +79,7 @@ ## Usage -**NOTE: YOU CAN ALWAYS RUN THE EDITOR IN A WEB BROWER, IN CASE THE GUI ISN'T WORKING FOR YOU.** +**NOTE: YOU CAN ALWAYS RUN THE EDITOR IN A WEB BROWSER, IN CASE THE GUI ISN'T WORKING PROPERLY FOR YOU.** ### A. Use Pre-Built Binary diff --git a/pyproject.toml b/pyproject.toml index bc67933..145dc2b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ keywords = ["palworld", "editor", "pal"] license = {file = "LICENSE"} requires-python = ">=3.11" readme = "README.md" -version = "0.3.3" +version = "0.3.4" dependencies = [ "setuptools==69.1.0", "palworld_save_tools==0.19.0", diff --git a/src/palworld_pal_editor/api/pal.py b/src/palworld_pal_editor/api/pal.py index 084daeb..2d13f81 100644 --- a/src/palworld_pal_editor/api/pal.py +++ b/src/palworld_pal_editor/api/pal.py @@ -31,13 +31,13 @@ def patch_paldata(): case "pop_EquipWaza": pal_entity.pop_EquipWaza(item=value) case "add_PassiveSkillList": if not pal_entity.add_PassiveSkillList(value): - return reply(1, None, f"Too many skills, or skill {value} already exists!") + return reply(1, None, f"Too many skills, or skill {value} already exists! Or we can't find it in database.") case "add_MasteredWaza": if not pal_entity.add_MasteredWaza(value): - return reply(1, None, f"Too many skills, or skill {value} already exists!") + return reply(1, None, f"Too many skills, or skill {value} already exists! Or we can't find it in database.") case "add_EquipWaza": if not pal_entity.add_EquipWaza(value): - return reply(1, None, f"Too many skills, or skill {value} already exists!") + return reply(1, None, f"Too many skills, or skill {value} already exists! Or we can't find it in database.") case "in_owner_palbox": if PlayerUId == "PAL_BASE_WORKER_BTN": return reply(1, None, f"Moving pal to basecamp is unsupported.") diff --git a/src/palworld_pal_editor/config.py b/src/palworld_pal_editor/config.py index be17951..8044f44 100644 --- a/src/palworld_pal_editor/config.py +++ b/src/palworld_pal_editor/config.py @@ -11,7 +11,7 @@ else: ASSETS_PATH = Path(__file__).parent -VERSION = "0.3.3" +VERSION = "0.3.4" class Config: i18n: str = "en"