SimpleConstruction! (SCON) by matterbeam

SimpleConstruction! (SCON) by matterbeam

34.8k Downloads

[Bug ๐Ÿž]: ELxxxSkill Log Spam

zer0Kerbal opened this issue ยท 2 comments

commented

Brief description of your issue

``from: ๐Ÿ‘พ
eightiesboi eightiesboi

KSP Forums

[ERR 16:24:52.448] ExperienceTrait: Cannot add effect 'ELSurveySkill' as it does not exist.
[ERR 16:24:52.448] ExperienceTrait: Cannot add effect 'ELConstructionSkill' as it does not exist.
[ERR 16:24:52.449] ExperienceTrait: Cannot add effect 'ELConstructionSkill' as it does not exist.
[ERR 16:24:52.449] ExperienceTrait: Cannot add effect 'ELSurveySkill' as it does not exist.
[ERR 16:24:52.450] ExperienceTrait: Cannot add effect 'ELConstructionSkill' as it does not exist.
[ERR 16:24:52.451] ExperienceTrait: Cannot add effect 'ELConstructionSkill' as it does not exist.
[ERR 16:24:52.451] ExperienceTrait: Cannot add effect 'ELConstructionSkill' as it does not exist.
[ERR 16:24:52.451] ExperienceTrait: Cannot add effect 'ELSurveySkill' as it does not exist.

And then I found this on the forums:

@EXPERIENCE_TRAIT[Pilot] {
    EFFECT {
        name = ELSurveySkill
    }
}

@EXPERIENCE_TRAIT[Engineer] {
    EFFECT {
        name = ELConstructionSkill
    }
}

What do you think?  What did I screw up... again? 

Logs here: EL SC.zip

Steps to reproduce

  1. install SCON
  2. start the game
  3. read the KSP.log

Expected behavior

no spam ๐Ÿ

No Spam :(

Actual behavior

spamming log

Spam in a can with black ham

Environment

latest

How did you download and install this?

CurseForge (download and manual installation)

commented

currently the patch reads like this:

@EXPERIENCE_TRAIT[Pilot]
{
	EFFECT
	{
		%name = ELSurveySkill
	}
}

@EXPERIENCE_TRAIT[Engineer]
{
	EFFECT
	{
		%name = ELConstructionSkill
	}
}
commented

it should read like this:

@EXPERIENCE_TRAIT[Pilot]
{
	EFFECT
	{
		name = ELSurveySkill
	}
}

@EXPERIENCE_TRAIT[Engineer]
{
	EFFECT
	{
		name = ELConstructionSkill
	}
}