From 24d6addc248c4276f0653056ceb5582bf8243c6f Mon Sep 17 00:00:00 2001 From: Brosef Date: Mon, 23 Jun 2025 21:18:59 +0100 Subject: [PATCH] Added note --- src/gameUtils/turns.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gameUtils/turns.py b/src/gameUtils/turns.py index d47269c..a8ca38a 100644 --- a/src/gameUtils/turns.py +++ b/src/gameUtils/turns.py @@ -2,6 +2,10 @@ # I.E. has the shocker been passed to the next player. # Also add a pop-up, probably using pygame-gui, to tell the player # to pass the shocker to the next person. +# NOTE: Each expansion is assigned multiple players, if an expansion has a tag +# such as "ONE_PERSON_ONLY", it means that when the game developer wants +# to go to the next player, it must self.notify() the players to pass the +# physical object around. class BaseTurnHandler: def __init__(self, playersManager):