mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-05 17:42:24 +00:00
[Hotfix] Crash fix that apparently didn't make it in another PR
This commit is contained in:
parent
ce5fa9502f
commit
9589bf6bf8
@ -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;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user