Skip to content

Commit

Permalink
[release] 0.3.4 Hopefully We Don't Crash on Game Update
Browse files Browse the repository at this point in the history
- Better Missing Data Handling
- Updated Pal & Human Data, Icons
  • Loading branch information
KrisCris committed Mar 23, 2024
1 parent 3f36509 commit ae6cb5b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions src/palworld_pal_editor/api/pal.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.")
Expand Down
2 changes: 1 addition & 1 deletion src/palworld_pal_editor/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
else:
ASSETS_PATH = Path(__file__).parent

VERSION = "0.3.3"
VERSION = "0.3.4"

class Config:
i18n: str = "en"
Expand Down

0 comments on commit ae6cb5b

Please sign in to comment.