mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-03-13 22:49:51 -04:00
Don't warn about missing misc System.
This commit is contained in:
parent
24f8029aff
commit
e41652730d
1 changed files with 1 additions and 1 deletions
|
@ -343,7 +343,7 @@ module.exports = class ThangComponentsEditView extends CocoView
|
|||
componentSystems = (c.get('system') for c in componentModels when c)
|
||||
|
||||
for system in componentSystems
|
||||
if system not in extantSystems
|
||||
if system isnt 'misc' and system not in extantSystems
|
||||
s = "Component requires system <strong>#{system}</strong> which is currently not included in this level."
|
||||
noty({
|
||||
text: s,
|
||||
|
|
Loading…
Reference in a new issue