Fix crash on constant signal dialog

pull/609/head
tobspr 4 years ago
parent 807deaa705
commit 707323591b

@ -107,6 +107,11 @@ export class ConstantSignalSystem extends GameSystemWithFilter {
* @returns {BaseItem}
*/
parseSignalCode(code) {
if (!this.root || !this.root.shapeDefinitionMgr) {
// Stale reference
return null;
}
code = trim(code);
const codeLower = code.toLowerCase();

Loading…
Cancel
Save