psu_instance: menu_prompt is in fact a sensor. Renamed it.
This commit is contained in:
parent
ecef3e3e8b
commit
83316ddf6f
@ -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_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);
|
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)
|
object_init([Object|Tail], ZoneID, BlockID, ObjectID, TargetID, ListIndex, ObjectIndex)
|
||||||
when Object =:= boss_gate;
|
when Object =:= boss_gate;
|
||||||
Object =:= shoot_button;
|
Object =:= shoot_button;
|
||||||
Object =:= goggle_target;
|
Object =:= goggle_target;
|
||||||
Object =:= trap;
|
Object =:= trap;
|
||||||
Object =:= menu_prompt ->
|
Object =:= sensor ->
|
||||||
object_init(Tail, ZoneID, BlockID, ObjectID + 1, TargetID + 1, ListIndex, ObjectIndex + 1);
|
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
|
%% @doc Ignore for now: 'exit' (seems to take a TargetID but not an ObjectID
|
||||||
|
@ -160,7 +160,7 @@ parse_object_args(6, _Params, _Data) ->
|
|||||||
fog;
|
fog;
|
||||||
|
|
||||||
parse_object_args(9, _Params, _Data) ->
|
parse_object_args(9, _Params, _Data) ->
|
||||||
menu_prompt;
|
sensor;
|
||||||
|
|
||||||
parse_object_args(10, _Params, _Data) ->
|
parse_object_args(10, _Params, _Data) ->
|
||||||
invisible_block;
|
invisible_block;
|
||||||
|
Loading…
Reference in New Issue
Block a user