Skip to content

Commit

Permalink
Fixed unlocking door from script
Browse files Browse the repository at this point in the history
  • Loading branch information
Loobinex committed Jan 15, 2025
1 parent 5abfb5f commit 7f652fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lvl_script_commands.c
Original file line number Diff line number Diff line change
Expand Up @@ -2759,12 +2759,12 @@ static void set_door_process(struct ScriptContext* context)
{
switch (context->value->shorts[0])
{
case 0:
unlock_door(doortng);
break;
case 1:
lock_door(doortng);
break;
case 2:
unlock_door(doortng);
break;
}
}
}
Expand Down

0 comments on commit 7f652fb

Please sign in to comment.