auraes flagged up this issue on my jam entry page - I have two cars in a garage, one of which belongs to the player, and I have the code set up so that both X YOUR CAR and X MY CAR give a specific response, and X CAR gives a different response. I tested this code many times on Friday 3rd July (as I'd updated it following playtester feedback!) and it was working absolutely fine then.
However, in the released game (compiled Sunday 5th), X MY CAR no longer works as it should do - it gives the X CAR response instead. Any ideas? Here's the code:
: match "examine your; examine my" { : if (is_beside "red_car" && noun2_is "car") { : print "It's your car. You're looking forward to hopping in and getting out of here." ; : done ; } } : match "examine car" { : if (is_beside "blue_car" && is_beside "red_car") { : print "You'll have to be more specific - this is a garage!" ; : done ; } }