Input_select changing twice during scene

Why is my input_select changing twice when I run a scene? It changes to Home then to what it is suppose to change to. Here is one of my scenes. Do I need to delete all the options except the one I’m changing to?

- id: '1633835740895'
  name: Up Early HA
  entities:
    input_select.house_state:
      options:
      - Home
      - Away
      - Gone
      - Hoss Home Alone
      - Kids Bed Time
      - Night
      - On Way Home
      - Visitor
      - Visitor Night
      - Up Early
      editable: true
      friendly_name: House State
      state: Up Early
    switch.kitchen_light:
      friendly_name: Kitchen Light
      icon: hass:lightbulb
      state: 'on'

I’ll start by saying that i’m not very familiar with scenes :slight_smile:
If you are setting the state of the input_select, why do you need the options listed in the scene ?

That was the code that was made from making the scene. I went to configuration on the left, selected scenes, then hit + add scene. When I went into file editor this is the code I found that was made.

How do you call the scene ?

With Siri. Here is the logs. Every scene I have I noticed goes to Home first before going to what it should be.

[Kitchen Light](http://homeassistant.local:8123/logbook#) turned on by [Up Early HA](http://homeassistant.local:8123/logbook#)

8:05:19 AM - 2 hours ago

[House State](http://homeassistant.local:8123/logbook#) changed to Up Early by [Up Early HA](http://homeassistant.local:8123/logbook#)

8:05:17 AM - 2 hours ago

[Alarmo](http://homeassistant.local:8123/logbook#) changed to Disarmed by [Set Alarm To Disarm](http://homeassistant.local:8123/logbook#)

8:05:17 AM - 2 hours ago

[Set Alarm To Disarm](http://homeassistant.local:8123/logbook#) has been triggered by state of input_select.house_state by [Up Early HA](http://homeassistant.local:8123/logbook#)

8:05:16 AM - 2 hours ago

[House State](http://homeassistant.local:8123/logbook#) changed to Home by [Up Early HA](http://homeassistant.local:8123/logbook#)

8:05:16 AM - 2 hours ago

[HomeKit](http://homeassistant.local:8123/logbook#) send command turn_on for Up Early HA

8:05:16 AM -

Guess I found a work around. After making the scene go into file editor then automations. I deleted all the options: and the editable: I had to restart for it to work reliably. Before the restart sometimes it would work properly sometimes it would change to Home then to the proper state:

This behavior was reported as an Issue in the Core repository:

However, no one ever corrected it and the Issue was eventually closed (due to becoming ‘stale’).

Deleting those lines of code has fixed it for me.