mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Script labels in TalkLinkToSupport objects are now detected.
This commit is contained in:
parent
48a1998679
commit
7d0d3188c2
@ -239,6 +239,7 @@ function extract_script_entry_points(objects: QuestObject[], npcs: DatNpc[]): nu
|
||||
function parse_obj_data(objs: DatObject[]): QuestObject[] {
|
||||
return objs.map(obj_data => {
|
||||
const type = pso_id_to_object_type(obj_data.type_id);
|
||||
|
||||
return {
|
||||
type,
|
||||
id: obj_data.id,
|
||||
@ -251,7 +252,9 @@ function parse_obj_data(objs: DatObject[]): QuestObject[] {
|
||||
obj_data.properties.map((value, index) => {
|
||||
if (
|
||||
index === 3 &&
|
||||
(type === ObjectType.ScriptCollision || type === ObjectType.ForestConsole)
|
||||
(type === ObjectType.ScriptCollision ||
|
||||
type === ObjectType.ForestConsole ||
|
||||
type === ObjectType.TalkLinkToSupport)
|
||||
) {
|
||||
return ["script_label", value];
|
||||
} else if (index === 4 && type === ObjectType.RicoMessagePod) {
|
||||
|
Loading…
Reference in New Issue
Block a user