Skip to content

Commit 31e77e0

Browse files
committed
Merge branch 'main' into tool
2 parents cf8a862 + 7c0c4f1 commit 31e77e0

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

game/nqtr_screens/screens_nqtr.rpy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ screen room_navigation():
1717
use location_button(location)
1818

1919
else:
20-
# Rooms
21-
use room_button_list(rooms, commitments_in_cur_location)
22-
2320
# Action wich Picture in background
2421
for room in rooms:
2522
# Adds the button list of possible actions in that room
2623
if (cur_room and room.id == cur_room.id and not room.id in closed_rooms):
2724
for act in current_picture_in_background_actions(actions= actions | df_actions, room = room, now_hour = tm.hour , current_day = tm.day, tm = tm, flags = flags):
2825
use action_picture_in_background(act)
2926

27+
# Rooms
28+
use room_button_list(rooms, commitments_in_cur_location)
29+
3030
# Normal Actions (with side button)
3131
vbox:
3232
yalign 0.95

game/nqtr_screens/screens_nqtr_component.rpy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ screen action_picture_in_background(act):
6262
]
6363
if renpy.variant("pc"):
6464
tooltip act.name
65-
at nqtr_button_action_picture_transform
65+
if act.picture_in_background_selected == act.picture_in_background:
66+
at nqtr_button_action_picture_transform
6667

6768
screen action_talk_button(conversation, background):
6869
python:

0 commit comments

Comments
 (0)