From 65aa15d70ebfde950ae53e5e64bba0ea1c34380a Mon Sep 17 00:00:00 2001 From: Emagi Date: Sat, 16 Aug 2025 18:46:47 -0400 Subject: [PATCH] Add HP and Power Regen to the /spawn details view below base stats STR, STA, so on. --- source/WorldServer/Commands/Commands.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/WorldServer/Commands/Commands.cpp b/source/WorldServer/Commands/Commands.cpp index a69ea29..d4f0b50 100644 --- a/source/WorldServer/Commands/Commands.cpp +++ b/source/WorldServer/Commands/Commands.cpp @@ -5018,6 +5018,8 @@ void Commands::Process(int32 index, EQ2_16BitString* command_parms, Client* clie details3 += "STA / STABase: " + to_string(ent->GetInfoStruct()->get_sta()) + " / " + to_string(ent->GetInfoStruct()->get_sta_base()) + "\n"; details3 += "INT / INTBase: " + to_string(ent->GetInfoStruct()->get_intel()) + " / " + to_string(ent->GetInfoStruct()->get_intel_base()) + "\n"; details3 += "WIS / WISBase: " + to_string(ent->GetInfoStruct()->get_wis()) + " / " + to_string(ent->GetInfoStruct()->get_wis_base()) + "\n"; + details3 += "HPRegen: " + to_string(ent->GetInfoStruct()->get_hp_regen()) + "\n"; + details3 += "PowerRegen: " + to_string(ent->GetInfoStruct()->get_power_regen()) + "\n"; } string details4;