Skip to content

Commit

Permalink
[Bug Fix] Fix issue with Client::SaveDisciplines() not specifying cha…
Browse files Browse the repository at this point in the history
…racter ID (#4481)
  • Loading branch information
Kinglykrab authored Sep 24, 2024
1 parent 6130e10 commit 5c0bdfd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [22.56.3] 9/23/2024

### Fixes

* Fix issue with Client::SaveDisciplines() not specifying character ID ([#4481](https://github.com/EQEmu/Server/pull/4477)) @Kinglykrab 2024-09-23

## [22.56.2] 9/20/2024

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion common/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

// Build variables
// these get injected during the build pipeline
#define CURRENT_VERSION "22.56.2-dev" // always append -dev to the current version for custom-builds
#define CURRENT_VERSION "22.56.3-dev" // always append -dev to the current version for custom-builds
#define LOGIN_VERSION "0.8.0"
#define COMPILE_DATE __DATE__
#define COMPILE_TIME __TIME__
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eqemu-server",
"version": "22.56.2",
"version": "22.56.3",
"repository": {
"type": "git",
"url": "https://github.com/EQEmu/Server.git"
Expand Down
3 changes: 2 additions & 1 deletion zone/client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11117,7 +11117,8 @@ void Client::SaveDisciplines()
CharacterDisciplinesRepository::DeleteWhere(
database,
fmt::format(
"`slot_id` IN ({})",
"`id` = {} AND `slot_id` IN ({})",
CharacterID(),
Strings::Join(delete_slots, ", ")
)
);
Expand Down

0 comments on commit 5c0bdfd

Please sign in to comment.