Skip to content

Commit

Permalink
Add new door ID
Browse files Browse the repository at this point in the history
The barn near the mill has door ID 13001. This commit adds the doo handler for this ID
  • Loading branch information
BuildTools committed Jul 10, 2021
1 parent 3a0662f commit 6f94bb1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/plugins/objects/doors/door.plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ const doors = [
closed: 11993,
open: 11994,
hinge: 'RIGHT'
},
{
closed: 13001,
open: 13002,
hinge: 'RIGHT'
}
];

Expand Down Expand Up @@ -98,7 +103,7 @@ export default {
{
type: 'object_interaction',
objectIds: [ 1530, 4465, 4467, 3014, 3017, 3018,
3019, 1536, 1537, 1533, 1531, 1534, 12348, 11993, 11994 ],
3019, 1536, 1537, 1533, 1531, 1534, 12348, 11993, 11994, 13001, 13002 ],
options: [ 'open', 'close' ],
walkTo: true,
handler: action
Expand Down

0 comments on commit 6f94bb1

Please sign in to comment.