Packet: ItemTransactionMessage (#37)

* Add TransactionType

* Add ItemTransactionMessage packet

* Add ItemTransactionMessage test

* Add ItemTransactionMessage handler stub
This commit is contained in:
tfarley 2016-07-25 21:36:22 -07:00 committed by pschord
parent d496fc1c2e
commit 49e7ab2c53
5 changed files with 115 additions and 1 deletions

View file

@ -203,6 +203,9 @@ class WorldSessionActor extends Actor with MDCContextAware {
case msg @ GenericObjectStateMsg(object_guid, unk1) =>
log.info("GenericObjectState: " + msg)
case msg @ ItemTransactionMessage(terminal_guid, transaction_type, item_page, item_name, unk1, item_guid) =>
log.info("ItemTransaction: " + msg)
case default => log.debug(s"Unhandled GamePacket ${pkt}")
}