sevivon

[DORMANT] multiplayer dreidel game for mobile devices w/ godot
git clone git://git.figbert.com/sevivon.git
Log | Files | Refs | README | LICENSE

commit 74b7fd0e15bf37ec2243b5c8c601b14eb6164e2f
parent f001c044f4bcfd9f0a2e05396ab1a7937b66fca5
Author: FIGBERT <figbert@figbert.com>
Date:   Sat, 30 Jan 2021 23:15:40 -0800

Reduce max players to two

This is a temporary change until some sort of start
button is implemented on the client. In the meantime,
games will start once both clients have connected to
the server.

Diffstat:
Msrc/scripts/main.gd | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/scripts/main.gd b/src/scripts/main.gd @@ -3,7 +3,7 @@ extends Node const SERVER_IP := "10.0.0.76" const SERVER_PORT := 1780 -const MAX_PLAYERS := 5 +const MAX_PLAYERS := 2 func _ready() -> void: