瀏覽代碼

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()


Loading…
取消
儲存