Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- Bug fix: automatic class switching now filters by... classes you've actually got unlocked. crazy, i know -alydev
- Bug fix: automatic class switching now filters by... classes you've actually got unlocked. crazy, i know -alydev
- bug fix: bypasses check if no gearsets are registered yet -alydev
2 changes: 1 addition & 1 deletion Directory.Build.targets
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup Condition="$(MSBuildProjectName) != 'GatheringPathRenderer'">
<Version>15.306.3.22</Version>
<Version>15.306.3.23</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://qstxiv.github.io/schema/quest-v1.json",
"Author": "liza",
"LastChecked": {"Username": "alydev", "Date": "2026-08-31"},
"QuestSequence": [
{
"Sequence": 0,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://qstxiv.github.io/schema/quest-v1.json",
"Author": "liza",
"LastChecked": {"Username": "alydev", "Date": "2026-08-31"},
"QuestSequence": [
{
"Sequence": 0,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://qstxiv.github.io/schema/quest-v1.json",
"Author": "liza",
"LastChecked": {"Username": "alydev", "Date": "2026-08-31"},
"QuestSequence": [
{
"Sequence": 0,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://qstxiv.github.io/schema/quest-v1.json",
"Author": "liza",
"LastChecked": {"Username": "alydev", "Date": "2026-08-31"},
"QuestSequence": [
{
"Sequence": 0,
Expand All @@ -14,7 +15,8 @@
},
"TerritoryId": 1192,
"AetheryteShortcut": "Living Memory - Leynode Aero",
"InteractionType": "AcceptQuest"
"InteractionType": "AcceptQuest",
"Fly": true
}
]
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://qstxiv.github.io/schema/quest-v1.json",
"Author": "liza",
"LastChecked": {"Username": "alydev", "Date": "2026-08-31"},
"QuestSequence": [
{
"Sequence": 0,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://qstxiv.github.io/schema/quest-v1.json",
"Author": "liza",
"LastChecked": {"Username": "alydev", "Date": "2026-08-31"},
"QuestSequence": [
{
"Sequence": 0,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://qstxiv.github.io/schema/quest-v1.json",
"Author": "liza",
"LastChecked": {"Username": "alydev", "Date": "2026-08-31"},
"QuestSequence": [
{
"Sequence": 0,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://qstxiv.github.io/schema/quest-v1.json",
"Author": "liza",
"LastChecked": {"Username": "alydev", "Date": "2026-08-31"},
"QuestSequence": [
{
"Sequence": 0,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://qstxiv.github.io/schema/quest-v1.json",
"Author": "liza",
"LastChecked": {"Username": "alydev", "Date": "2026-08-31"},
"QuestSequence": [
{
"Sequence": 0,
Expand Down
2 changes: 1 addition & 1 deletion Questionable/Controller/Steps/Interactions/Interact.cs
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ objectTable[0] is IPlayerCharacter player &&
Task.Quest != null &&
InteractionType == EInteractionType.AcceptQuest)
{
List<Job> acceptableJobs = [.. Task.Quest.Info.ClassJobs.Where(x => jobGearSets.Any(v => v.ClassJob.Equals(x)))];
List<Job> acceptableJobs = [.. Task.Quest.Info.ClassJobs.Where(x => jobGearSets.Count == 0 || jobGearSets.Any(v => v.ClassJob.Equals(x)))];
Job playerJob = (Job)player.ClassJob.Value.RowId;
Job targetJob = acceptableJobs[0];
logger.LogDebug($"{Task.Quest.Id} acceptableJobs: {string.Join(',', acceptableJobs.Select(j => j.ToString()))}");
Expand Down
Loading