sarbian/ModuleManager

! Not deleting in .21

Closed this issue · 3 comments

In a cfg I have

!mesh

Which used to remove "mesh=model". However when I check the database in game, the mesh=model key remains in ksp1.1. The various additions my cfg makes to the part in question appear as expected.

Among them is a MODEL{...} node of course.

A line like that is considered invalid by KSP's ConfigNode loader and will be eaten by KSP before MM even sees it. A line must contain an equals sign (with content on both sides of it) to be valid, so you need to have something like "!mesh = delete".

So, the proper syntax is

!key = doesnt_matter_what_is_here_but_you_need_something

Correct?

it is. Closing now :)