From c1ff3ec5ac929ff1dcbb1c36507b26a343e49556 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Ros=C3=A9n?= Date: Tue, 20 Feb 2024 11:30:18 +0100 Subject: [PATCH] HotelLocs_B --- cellpainter/cellpainter/moves.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cellpainter/cellpainter/moves.py b/cellpainter/cellpainter/moves.py index c9d0f5a..3e1e519 100644 --- a/cellpainter/cellpainter/moves.py +++ b/cellpainter/cellpainter/moves.py @@ -16,7 +16,8 @@ # UR room: HotelLocs_A = [h+1 for h in range(21)] -HotelLocs_B = [h for h in HotelLocs_A if h % 2 == 1] +HotelLocs_B = [21, 19, 17, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1] +# [h for h in HotelLocs_A if h % 2 == 1] # PF room: HotelLocs_H = [h+1 for h in range(19) if h+1 != 12]