Fix broken string interpolation in chat effects warning

pull/21833/head
Michael Telatynski 2021-05-18 10:28:37 +01:00
parent 1166e76928
commit afd9843722
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ const EffectsOverlay: FunctionComponent<IProps> = ({ roomWidth }) => {
effect = new Effect(options);
effectsRef.current[name] = effect;
} catch (err) {
console.warn('Unable to load effect module at \'../../../effects/${name}\'.', err);
console.warn(`Unable to load effect module at '../../../effects/${name}.`, err);
}
}
return effect;