mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 14:41:28 +00:00
[Release] 23.3.4
This commit is contained in:
parent
e93785f885
commit
5d69235a4c
@ -1,3 +1,10 @@
|
|||||||
|
## [23.3.4] 3/14/2025
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
* Add check for simultaneous direct vendor and parcel Trader/Buyer Purchase ([#4778](https://github.com/EQEmu/Server/pull/4778)) @neckkola 2025-03-14
|
||||||
|
* Fix for rare circumstance where NPC's would have 0 health on restore @Akkadius
|
||||||
|
|
||||||
## [23.3.3] 3/13/2025
|
## [23.3.3] 3/13/2025
|
||||||
|
|
||||||
### Database
|
### Database
|
||||||
|
|||||||
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
// Build variables
|
// Build variables
|
||||||
// these get injected during the build pipeline
|
// these get injected during the build pipeline
|
||||||
#define CURRENT_VERSION "23.3.3-dev" // always append -dev to the current version for custom-builds
|
#define CURRENT_VERSION "23.3.4-dev" // always append -dev to the current version for custom-builds
|
||||||
#define LOGIN_VERSION "0.8.0"
|
#define LOGIN_VERSION "0.8.0"
|
||||||
#define COMPILE_DATE __DATE__
|
#define COMPILE_DATE __DATE__
|
||||||
#define COMPILE_TIME __TIME__
|
#define COMPILE_TIME __TIME__
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "eqemu-server",
|
"name": "eqemu-server",
|
||||||
"version": "23.3.3",
|
"version": "23.3.4",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/EQEmu/Server.git"
|
"url": "https://github.com/EQEmu/Server.git"
|
||||||
|
|||||||
@ -312,9 +312,15 @@ inline std::vector<uint32_t> GetLootdropIds(const std::vector<ZoneStateSpawnsRep
|
|||||||
|
|
||||||
inline void LoadNPCState(Zone *zone, NPC *n, ZoneStateSpawnsRepository::ZoneStateSpawns &s)
|
inline void LoadNPCState(Zone *zone, NPC *n, ZoneStateSpawnsRepository::ZoneStateSpawns &s)
|
||||||
{
|
{
|
||||||
n->SetHP(s.hp);
|
if (s.hp > 0) {
|
||||||
n->SetMana(s.mana);
|
n->SetHP(s.hp);
|
||||||
n->SetEndurance(s.endurance);
|
}
|
||||||
|
if (s.mana > 0) {
|
||||||
|
n->SetMana(s.mana);
|
||||||
|
}
|
||||||
|
if (s.endurance > 0) {
|
||||||
|
n->SetEndurance(s.endurance);
|
||||||
|
}
|
||||||
|
|
||||||
if (s.grid) {
|
if (s.grid) {
|
||||||
n->AssignWaypoints(s.grid, s.current_waypoint);
|
n->AssignWaypoints(s.grid, s.current_waypoint);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user