mirror of
https://github.com/tobspr/shapez.io.git
synced 2024-10-27 20:34:29 +00:00
Fix crash on constant signal dialog
This commit is contained in:
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…
Reference in New Issue
Block a user