Browse Source

fix: fixed a bug that caused extendEffects to only be send to the owner of the effect

tags/v0.12.0
Shaun 1 year ago
parent
commit
b928df1b90
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/server/components/effects.js

+ 1
- 1
src/server/components/effects.js View File

@@ -213,7 +213,7 @@ module.exports = {
if (effect.silent)
return;

this.obj.syncer.setArray(true, 'effects', 'extendEffects', {
this.obj.syncer.setArray(false, 'effects', 'extendEffects', {
id,
data
});


Loading…
Cancel
Save