diff options
| -rw-r--r-- | worker.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") |
