mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-26 11:27:17 +00:00
[Hotfix] Crash fix that apparently didn't make it in another PR
This commit is contained in:
@@ -11146,9 +11146,11 @@ void Client::Handle_OP_PopupResponse(const EQApplicationPacket *app)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case POPUPID_DIAWIND:
|
case POPUPID_DIAWIND:
|
||||||
response = GetEntityVariable(DIAWIND_RESPONSE_KEY.c_str());
|
if (EntityVariableExists(DIAWIND_RESPONSE_KEY.c_str())) {
|
||||||
if (!response.empty()) {
|
response = GetEntityVariable(DIAWIND_RESPONSE_KEY.c_str());
|
||||||
ChannelMessageReceived(8, 0, 100, response.c_str());
|
if (!response.empty()) {
|
||||||
|
ChannelMessageReceived(8, 0, 100, response.c_str());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user