[Game Version: 0.69.420-PUBLIC#1814] Kimber's Second Quest - Raskvel feather without Shekka being crew

OrangeBurner

Well-Known Member
Mar 13, 2022
305
72
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.
Shekka's Feather.png

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"));