mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
12 lines
373 B
C++
12 lines
373 B
C++
#include "AddMessage.h"
|
|
|
|
AddMessage::AddMessage(AMFArrayValue* arguments) : BehaviorMessageBase(arguments) {
|
|
behaviorIndex = 0;
|
|
auto* behaviorIndexValue = arguments->Get<double>("BehaviorIndex");
|
|
|
|
if (!behaviorIndexValue) return;
|
|
|
|
behaviorIndex = static_cast<uint32_t>(behaviorIndexValue->GetValue());
|
|
LOG_DEBUG("behaviorId %i index %i", behaviorId, behaviorIndex);
|
|
}
|