Summoning Crash Bug
Moderators: Community Managers, Developers
Summoning Crash Bug
Well found the issue the server did not like trying to tell a client to chunk while the client was in the middle of chunking.
So I added the following to the summon command which stopped the crash from happening.
This one shouldn't be needed cause by the time you see the character they were finished loading but added it anyway.
This one was needed since going by name you could catch them while zoning.
So I added the following to the summon command which stopped the crash from happening.
This one shouldn't be needed cause by the time you see the character they were finished loading but added it anyway.
Code: Select all
if (def_target->IsZoning()) {
client->SendMessageFromServer("<red=>Defensive Target is zoning, please wait a minute and try again.");
return;
}
This one was needed since going by name you could catch them while zoning.
Code: Select all
if (target_casted->IsZoning()) {
client->SendMessageFromServer("<red=>Target is zoning, please wait a minute and try again.");
return;
}
Re: Summoning Crash Bug
Can we get it back if I promise not to .summon john?
Haiku is easy -
But sometimes it makes no sense.
Refridgerator.
But sometimes it makes no sense.
Refridgerator.