Open matthias-mayr opened 1 year ago
If remaps are done wrongly, there is no direct indication.
A minimal example is a compound "SkillB" with
In this compound skill a wrong remap has been performed:
self.skill("SkillA "skill_a", remap={'param':'param_c'}),
Notably, param_c does not exist in "SkillB". Such a wrong remap does not lead to any error messages. When using param inside "skill_a", it actually remapped to param_a.
param_c
param
param_a
If remaps are done wrongly, there is no direct indication.
A minimal example is a compound "SkillB" with
In this compound skill a wrong remap has been performed:
Notably,
param_c
does not exist in "SkillB". Such a wrong remap does not lead to any error messages. When usingparam
inside "skill_a", it actually remapped toparam_a
.