aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities/ron.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities/ron.c')
-rw-r--r--src/entities/ron.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/entities/ron.c b/src/entities/ron.c
index 834c119..5c60b9f 100644
--- a/src/entities/ron.c
+++ b/src/entities/ron.c
@@ -38,7 +38,9 @@ InteractionCommand interactWithRon(Entity* entity, Game* game,
case SELECTION_INTERACT:
setInteractionMenu(menu, items, 9);
return INTERACTION_SHOW_MENU;
- default:
+ case SELECTION_LEAVE:
return INTERACTION_END;
+ default:
+ return INTERACTION_DO_NOTHING;
}
}