You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After using the parachute, assign a level 2 engineer to repackage the parachute.
Keep showing message: "只有1级以上的工程师能重新打包降落伞" which means "Only a level 1 and higher engineer can repack a parachute" in English.
Playing in English does not have this problem.
My conclusion
The cause of this problem is the code on line 139 of file RealChuteLite\RealChuteFAR.cs
When I change it to kerbal.experienceTrait.Title == Localizer.Format("#autoLOC_500103") && kerbal.experienceLevel >= 1;
and compile it on my computer, problem solved.
The text was updated successfully, but these errors were encountered:
KSP version
1.9.1.2788
Language
zh-cn Simplified Chinese
FAR version
3:0.15.11.4
Description
After using the parachute, assign a level 2 engineer to repackage the parachute.
Keep showing message: "只有1级以上的工程师能重新打包降落伞" which means "Only a level 1 and higher engineer can repack a parachute" in English.
Playing in English does not have this problem.
My conclusion
The cause of this problem is the code on line 139 of file RealChuteLite\RealChuteFAR.cs
Ferram-Aerospace-Research/FerramAerospaceResearch/RealChuteLite/RealChuteFAR.cs
Line 139 in 787a30b
When I change it to
kerbal.experienceTrait.Title == Localizer.Format("#autoLOC_500103") && kerbal.experienceLevel >= 1;
and compile it on my computer, problem solved.
The text was updated successfully, but these errors were encountered: