mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18: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[] {
|
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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user