mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
d138b7b878
* Make case consistent * How modular can you go? Holy modular * Add comments * Initialize values
10 lines
455 B
C++
10 lines
455 B
C++
#include "MoveToInventoryMessage.h"
|
|
|
|
MoveToInventoryMessage::MoveToInventoryMessage(AMFArrayValue* arguments) : BehaviorMessageBase(arguments) {
|
|
auto* behaviorIndexValue = arguments->FindValue<AMFDoubleValue>("BehaviorIndex");
|
|
if (!behaviorIndexValue) return;
|
|
|
|
behaviorIndex = static_cast<uint32_t>(behaviorIndexValue->GetDoubleValue());
|
|
Game::logger->LogDebug("MoveToInventoryMessage", "behaviorId %i behaviorIndex %i", behaviorId, behaviorIndex);
|
|
}
|