Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions src/core/modules/engines/engines_server_wrap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -521,11 +521,6 @@ static void export_engine_server(scope _server)
"Tells the engine we can immediately re-use all the edict indices."
)

.def("is_internal_build",
&IVEngineServer::IsInternalBuild,
"Returns true if the engine is an internal build."
)

.def("get_change_accessor",
&IVEngineServer::GetChangeAccessor,
args("edict"),
Expand Down Expand Up @@ -751,7 +746,6 @@ static void export_engine_server(scope _server)
FUNCTION_INFO(GetPrevCheckTransmitInfo)
FUNCTION_INFO(GetSharedEdictChangeInfo)
FUNCTION_INFO(AllowImmediateEdictReuse)
FUNCTION_INFO(IsInternalBuild)
FUNCTION_INFO(GetChangeAccessor)
FUNCTION_INFO(CleanUpEntityClusterList)
FUNCTION_INFO(GetAppID)
Expand Down Expand Up @@ -887,7 +881,11 @@ static void export_iserver(scope _server)

_IServer.add_property(
"udp_port",
#if defined(ENGINE_BRANCH_TF2)
&IServer::GetLocalUDPPort,
#else
&IServer::GetUDPPort,
#endif
"Return the currently used UDP port.\n\n"
":rtype: int"
);
Expand Down