Script labels in TalkLinkToSupport objects are now detected.

This commit is contained in:
Daan Vanden Bosch 2019-08-16 16:41:05 +02:00
parent 48a1998679
commit 7d0d3188c2

View File

@ -239,6 +239,7 @@ function extract_script_entry_points(objects: QuestObject[], npcs: DatNpc[]): nu
function parse_obj_data(objs: DatObject[]): QuestObject[] { function parse_obj_data(objs: DatObject[]): QuestObject[] {
return objs.map(obj_data => { return objs.map(obj_data => {
const type = pso_id_to_object_type(obj_data.type_id); const type = pso_id_to_object_type(obj_data.type_id);
return { return {
type, type,
id: obj_data.id, id: obj_data.id,
@ -251,7 +252,9 @@ function parse_obj_data(objs: DatObject[]): QuestObject[] {
obj_data.properties.map((value, index) => { obj_data.properties.map((value, index) => {
if ( if (
index === 3 && index === 3 &&
(type === ObjectType.ScriptCollision || type === ObjectType.ForestConsole) (type === ObjectType.ScriptCollision ||
type === ObjectType.ForestConsole ||
type === ObjectType.TalkLinkToSupport)
) { ) {
return ["script_label", value]; return ["script_label", value];
} else if (index === 4 && type === ObjectType.RicoMessagePod) { } else if (index === 4 && type === ObjectType.RicoMessagePod) {