- always locked
- no time limit
- lets clients try auth key is working (speaks to auth.sauerworld.org:28787 like any other game server would)
- lets SW admins prepare accounts (/servcmd makeacc pix)
- lets gauth holders without an admin present using their gauth name
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine:latest as builder | |
RUN apk add --upgrade \ | |
make \ | |
build-base \ | |
zlib-dev | |
# make sure to `make clean` in src/ and src/enet/ before | |
COPY ./src /src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: src/engine/physics.cpp | |
=================================================================== | |
--- src/engine/physics.cpp (revision 6518) | |
+++ src/engine/physics.cpp (working copy) | |
@@ -1545,30 +1545,18 @@ | |
COMMAND(phystest, ""); | |
-void vecfromyawpitch(float yaw, float pitch, int move, int strafe, vec &m) | |
+void vecfromyawpitch(float yaw, float pitch, int move, int strafe, int vertical, vec &m) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Enet 1.3 Protocol Dissector For Wireshark | |
-- | |
-- Cameron Gutman ([email protected]) | |
-- fixes by Alexander Willing ([email protected]) | |
-- Licensed under GPLv3 | |
-- | |
-- ENetProtocolHeader | |
enet_header_hassenttime = ProtoField.bool("enet.header.has_senttime", "Has Sent Time") | |
enet_header_compressed = ProtoField.bool("enet.header.is_compressed", "Compressed") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: src/fpsgame/server.cpp | |
=================================================================== | |
--- src/fpsgame/server.cpp (revision 5401) | |
+++ src/fpsgame/server.cpp (working copy) | |
@@ -2116,6 +2116,42 @@ | |
} | |
} | |
+ void reportstats() | |
+ { |