diff --git a/src/psu/psu_instance.erl b/src/psu/psu_instance.erl index dd867eb..99da72a 100644 --- a/src/psu/psu_instance.erl +++ b/src/psu/psu_instance.erl @@ -120,13 +120,13 @@ object_init([{warp, DestX, DestY, DestZ, DestDir}|Tail], ZoneID, BlockID, Object object_insert(#psu_object{id={self(), ZoneID, warp, BlockID, ListIndex, ObjectIndex}, instancepid=self(), type=warp, args=#pos{x=DestX, y=DestY, z=DestZ, dir=DestDir}}), object_init(Tail, ZoneID, BlockID, ObjectID, TargetID, ListIndex, ObjectIndex + 1); -%% @doc Ignore for now: boss_gate, shoot_button, goggle_target, trap (all kinds), menu_prompt +%% @doc Ignore for now: boss_gate, shoot_button, goggle_target, trap (all kinds), sensor object_init([Object|Tail], ZoneID, BlockID, ObjectID, TargetID, ListIndex, ObjectIndex) when Object =:= boss_gate; Object =:= shoot_button; Object =:= goggle_target; Object =:= trap; - Object =:= menu_prompt -> + Object =:= sensor -> object_init(Tail, ZoneID, BlockID, ObjectID + 1, TargetID + 1, ListIndex, ObjectIndex + 1); %% @doc Ignore for now: 'exit' (seems to take a TargetID but not an ObjectID diff --git a/src/psu/psu_parser.erl b/src/psu/psu_parser.erl index e14e9fc..087d265 100644 --- a/src/psu/psu_parser.erl +++ b/src/psu/psu_parser.erl @@ -160,7 +160,7 @@ parse_object_args(6, _Params, _Data) -> fog; parse_object_args(9, _Params, _Data) -> - menu_prompt; + sensor; parse_object_args(10, _Params, _Data) -> invisible_block;