1
0
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Stefan Belmont 3c2d29df1c
re-do unmount in 4217 2024-09-28 10:33:21 +01:00
Stefan Belmont 79c52cf45d
Revert "Action: Dismount" (again)
This reverts commit b41d47a162.
2024-09-28 10:28:48 +01:00
4 changed files with 5 additions and 15 deletions

View File

@ -74,15 +74,9 @@
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 370.17212,
"Y": -18.937208,
"Z": 338.0957
},
"TerritoryId": 958,
"InteractionType": "Action",
"Action": "Dismount",
"$": "need to dismount explicitly or it blocks quest turnin, gets mad at you for not using the pet hotbar action. if we do it now, we can fly to turnin, big speedup"
"InteractionType": "None",
"Mount": false
},
{
"DataId": 1041119,

View File

@ -919,8 +919,7 @@
"Yellow Gulal",
"Blue Gulal",
"Electric Flux",
"Hop-step",
"Dismount"
"Hop-step"
]
}
},

View File

@ -34,6 +34,5 @@ public sealed class ActionConverter() : EnumConverter<EAction>(Values)
{ EAction.BlueGulal, "Blue Gulal" },
{ EAction.ElectrixFlux, "Electric Flux" },
{ EAction.HopStep, "Hop-step" },
{ EAction.Dismount, "Dismount" },
};
}

View File

@ -35,7 +35,6 @@ public enum EAction
BlueGulal = 29384,
ElectrixFlux = 29718,
HopStep = 31116,
Dismount = 23,
CollectMiner = 240,
ScourMiner = 22182,
@ -71,7 +70,6 @@ public static class EActionExtensions
or EAction.YellowGulal
or EAction.BlueGulal
or EAction.ElectrixFlux
or EAction.HopStep
or EAction.Dismount;
or EAction.HopStep;
}
}