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