diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-10-11 19:59:35 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-10-11 19:59:35 +0200 |
| commit | 6c80b99a7deb86b13067d8fbb1ee9b995fe6797a (patch) | |
| tree | 05ca11607e3769821121cb4befc71cbc9f90306b /worker.js | |
| parent | 397dd6b565cdaa0795b64c18317894284fe0fada (diff) | |
| download | shrinker-6c80b99a7deb86b13067d8fbb1ee9b995fe6797a.tar.gz shrinker-6c80b99a7deb86b13067d8fbb1ee9b995fe6797a.zip | |
add forwards support for damage 'Dealt'
Diffstat (limited to 'worker.js')
| -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") |
