From 6c80b99a7deb86b13067d8fbb1ee9b995fe6797a Mon Sep 17 00:00:00 2001 From: schneefux Date: Wed, 11 Oct 2017 19:59:35 +0200 Subject: add forwards support for damage 'Dealt' --- worker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker.js b/worker.js index 7a279d4..c9919e0 100644 --- a/worker.js +++ b/worker.js @@ -248,7 +248,7 @@ amqp.connect(RABBITMQ_URI).then(async (rabbit) => { // patch schema, Delt -> Dealt from 2.9 onwards // see https://github.com/gamelocker/vainglory-assets/pull/308 - t.payload.Dealt = t.payload.Delt; + t.payload.Dealt = t.payload.Dealt || t.payload.Delt; // linking if (t.type == "HeroSelect") -- cgit v1.3.1