소스 검색

fixin bugs

tags/online1.1
Madiwka 4 년 전
부모
커밋
37b5bc6364
1개의 변경된 파일9개의 추가작업 그리고 3개의 파일을 삭제
  1. +9
    -3
      src/baseGame.lua

+ 9
- 3
src/baseGame.lua 파일 보기

@@ -401,8 +401,11 @@ function goalManager()
gameState = "done"
TEXT = "Player 2 Won!"
else
gameState = "1serve"
serveBot()
if globalState ~= "clienttest" or (globalState == "clienttest" and gameState == "1serve") then
gameState = "1serve"
serveBot()
ball[i]:reset(i)
end
end
end

@@ -439,11 +442,14 @@ function goalManager()
gameState = "done"
TEXT = "Player 1 Won!"
else
if globalState ~= "nettest" or (globalState == "nettest" and gameState == "2serve") then
gameState = "2serve"
serveBot()
ball[i]:reset(i)
end

end
end
sounds["score"]:play()


불러오는 중...
취소
저장