In Kimber’s Second Expedition one of the ways you can get the raskvel feather is finding one of Shekka's laying around your ship (or in her shop).
This can happen reguardless if you have recruited Shekka or not.
This is because the code doesn't check if Shekka is crew or not.
Original code: game_functions.js, line: 2050:
What I think it should be:
This can happen reguardless if you have recruited Shekka or not.
This is because the code doesn't check if Shekka is crew or not.
Original code: game_functions.js, line: 2050:
JavaScript:
if (flags["KIMBER_QUEST_2"] == 1 && !pc.hasKeyItem("Raskvel Feather")) addButton(button++,"Feather", () => window.kimberSecondQuestFindItem("shekkacrew"));
What I think it should be:
JavaScript:
if (flags["KIMBER_QUEST_2"] == 1 && !pc.hasKeyItem("Raskvel Feather") && shekka.iscrew() /* I don't know if that's the correct function */) addButton(button++,"Feather", () => window.kimberSecondQuestFindItem("shekkacrew"));