Skip to content

Commit d0ffd8c

Browse files
committed
Removed Universe.RC.
1 parent efd119f commit d0ffd8c

File tree

7 files changed

+0
-40
lines changed

7 files changed

+0
-40
lines changed

Diff for: src/core/modules/steam/blade/steam_wrap.h

-6
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,6 @@ void export_engine_specific_steamid(scope _steam, T SteamID)
5656
);
5757
}
5858

59-
template<class T>
60-
void export_engine_specific_universe(scope _steam, T Universe)
61-
{
62-
Universe.value("RC", k_EUniverseRC);
63-
}
64-
6559
template<class T>
6660
void export_engine_specific_account_type(scope _steam, T AccountType)
6761
{

Diff for: src/core/modules/steam/bms/steam_wrap.h

-5
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,6 @@ void export_engine_specific_steamid(scope _steam, T SteamID)
9292
);
9393
}
9494

95-
template<class T>
96-
void export_engine_specific_universe(scope _steam, T Universe)
97-
{
98-
}
99-
10095
template<class T>
10196
void export_engine_specific_account_type(scope _steam, T AccountType)
10297
{

Diff for: src/core/modules/steam/csgo/steam_wrap.h

-6
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,6 @@ void export_engine_specific_steamid(scope _steam, T SteamID)
5656
);
5757
}
5858

59-
template<class T>
60-
void export_engine_specific_universe(scope _steam, T Universe)
61-
{
62-
Universe.value("RC", k_EUniverseRC);
63-
}
64-
6559
template<class T>
6660
void export_engine_specific_account_type(scope _steam, T AccountType)
6761
{

Diff for: src/core/modules/steam/gmod/steam_wrap.h

-5
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,6 @@ void export_engine_specific_steamid(scope _steam, T SteamID)
3333
// Nothing specific to GMod...
3434
}
3535

36-
template<class T>
37-
void export_engine_specific_universe(scope _steam, T Universe)
38-
{
39-
}
40-
4136
template<class T>
4237
void export_engine_specific_account_type(scope _steam, T AccountType)
4338
{

Diff for: src/core/modules/steam/l4d2/steam_wrap.h

-6
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,6 @@ void export_engine_specific_steamid(scope _steam, T SteamID)
3232
{
3333
}
3434

35-
template<class T>
36-
void export_engine_specific_universe(scope _steam, T Universe)
37-
{
38-
Universe.value("RC", k_EUniverseRC);
39-
}
40-
4135
template<class T>
4236
void export_engine_specific_account_type(scope _steam, T AccountType)
4337
{

Diff for: src/core/modules/steam/orangebox/steam_wrap.h

-6
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,6 @@ void export_engine_specific_steamid(scope _steam, T SteamID)
3232
{
3333
}
3434

35-
template<class T>
36-
void export_engine_specific_universe(scope _steam, T Universe)
37-
{
38-
Universe.value("RC", k_EUniverseRC);
39-
}
40-
4135
template<class T>
4236
void export_engine_specific_account_type(scope _steam, T AccountType)
4337
{

Diff for: src/core/modules/steam/steam_wrap.cpp

-6
Original file line numberDiff line numberDiff line change
@@ -257,12 +257,6 @@ void export_universe(scope _steam)
257257
Universe.value("INTERNAL", k_EUniverseInternal);
258258
Universe.value("DEV", k_EUniverseDev);
259259
Universe.value("MAX", k_EUniverseMax);
260-
261-
// Game/engine specific values
262-
// Available in Orangebox, CS:GO, L4D2
263-
NOT_IMPLEMENTED_VALUE(EUniverse, "RC");
264-
265-
export_engine_specific_universe(_steam, Universe);
266260
}
267261

268262

0 commit comments

Comments
 (0)