-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix character selection not giving the correct starter ship #191
base: main
Are you sure you want to change the base?
Conversation
@@ -29,6 +29,8 @@ bool noConfirm = false; // added by MAXIMUS [confirmation dialog will be disable | |||
|
|||
void InitInterface_RS(string iniName,ref itemsRef,string faceID) | |||
{ | |||
Trace("============================================"); | |||
Trace("InitInterface_RS, iniName = " + iniName + ", faceID = " + faceID); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to keep this trace?
AddQuestRecord("Contact", 15); // GR: Line 13 is about Marigot governor. Line 15 is about Tia Dalma. | ||
CloseQuestHeader("Contact"); | ||
//END OF Justine Le Moigne’s Disappearance | ||
//END OF Justine Le Moigne�s Disappearance |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
text encoding issue
@@ -2137,7 +2137,7 @@ void QuestComplete(string sQuestName) | |||
|
|||
case "Now_get_to_see_Petros_house": | |||
Pchar.Quest.Captured_on_Guadeloupe.over = "yes"; | |||
ChangeCharacterAddress(characterFromID("François de Vigny"), "None", ""); | |||
ChangeCharacterAddress(characterFromID("Fran�ois de Vigny"), "None", ""); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
text encoding issue
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this file is not related to the actual fix?
Should it be included?
@@ -2524,7 +2521,7 @@ int Promote(ref char, ref gov, int iNation) | |||
SetRank(char, iNation, curRank); // PB: was char.nations.(sNation).Rank = curRank; | |||
GivePromotionReward(iNation); // PB | |||
// bool NoLandGiven = ProfessionalNavyNation() != UNKNOWN_NATION && curRank < 7; | |||
bool NoLandGiven = curRank < 7; // GR: no land for navy OR privateers until you are landed gentry | |||
bool NoLandGiven = curRank < 7; // GR: no land for navy OR privateers until you are landed gentry if(NoLandGiven || iNation == PIRATE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this if statement supposed to be in the comment?
"We still have our blades Jack, together we can escape!", | ||
"Devil...I knew you would say something like that! Well this sounds like as good of a plan as any other right now!", | ||
"Ah... the Compass, I see, but as you might have noticed I'm in not much of a position to help you right now.", | ||
"We still have our blades, Jack. Together we can escape!", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we update the translation as well?
No description provided.