Update networkmodule.py

This commit is contained in:
rtw1x1
2025-12-27 21:27:34 +00:00
parent ad644479c7
commit 5ab545d069

View File

@@ -125,16 +125,16 @@ class MainStream(object):
def SetPhaseWindow(self, newPhaseWindow):
if self.newPhaseWindow:
#print "이미 새로운 윈도우로 바꾼상태에서 또 바꿈", newPhaseWindow
#print "Already in the process of changing to a new phase, skip", newPhaseWindow
self.__ChangePhaseWindow()
self.newPhaseWindow=newPhaseWindow
if self.curPhaseWindow:
#print "페이드 아웃되면 바꿈"
#print "Change after fade out"
self.curtain.FadeOut(self.__ChangePhaseWindow)
else:
#print "현재 윈도우가 없는 상태라 바로 바꿈"
#print "Change immediately if there's no current phase"
self.__ChangePhaseWindow()
def __ChangePhaseWindow(self):