Skip to content

Commit 6a90af9

Browse files
committed
HL: Arena support added
To-do: HL: Legacy support
1 parent e5e9464 commit 6a90af9

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

dlls/HPB_bot.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,23 +30,23 @@
3030
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MetaMod Debug|Win32'" Label="Configuration">
3232
<ConfigurationType>DynamicLibrary</ConfigurationType>
33-
<PlatformToolset>v143</PlatformToolset>
33+
<PlatformToolset>v145</PlatformToolset>
3434
<UseOfMfc>false</UseOfMfc>
3535
<CharacterSet>MultiByte</CharacterSet>
3636
</PropertyGroup>
3737
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
3838
<ConfigurationType>DynamicLibrary</ConfigurationType>
39-
<PlatformToolset>v143</PlatformToolset>
39+
<PlatformToolset>v145</PlatformToolset>
4040
<UseOfMfc>false</UseOfMfc>
4141
</PropertyGroup>
4242
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MetaMod Release|Win32'" Label="Configuration">
43-
<PlatformToolset>v143</PlatformToolset>
43+
<PlatformToolset>v145</PlatformToolset>
4444
<ConfigurationType>DynamicLibrary</ConfigurationType>
4545
<SpectreMitigation>false</SpectreMitigation>
4646
</PropertyGroup>
4747
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
4848
<ConfigurationType>DynamicLibrary</ConfigurationType>
49-
<PlatformToolset>v143</PlatformToolset>
49+
<PlatformToolset>v145</PlatformToolset>
5050
<UseOfMfc>false</UseOfMfc>
5151
</PropertyGroup>
5252
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

dlls/bot.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6283,6 +6283,8 @@ class CBotGlobals
62836283
m_Mods.AddMod("wizardwars", "wizardwars", MOD_WW); // Support for Wiz Wars v1.2.7 [APG]RoboCop[CL]
62846284
m_Mods.AddMod("si", "si", MOD_SI); // Support for Science and Industry [APG]RoboCop[CL]
62856285
m_Mods.AddMod("frontline", "frontline", MOD_FLF); // Support for Front Line Force [APG]RoboCop[CL]
6286+
m_Mods.AddMod("arena", "hl", MOD_GEARBOX); // Support for HL: Arena [APG]RoboCop[CL]
6287+
m_Mods.AddMod("hlc", "foundation", MOD_HL_DM); // Support for HL: Legacy [APG]RoboCop[CL]
62866288

62876289
#else
62886290
// LINUX
@@ -6311,6 +6313,8 @@ class CBotGlobals
63116313
m_Mods.AddMod("wizardwars", "wizardwars", MOD_WW); // Support for Wiz Wars v1.2.7 [APG]RoboCop[CL]
63126314
m_Mods.AddMod("si", "si", MOD_SI); // Support for Science and Industry [APG]RoboCop[CL]
63136315
m_Mods.AddMod("frontline", "front", MOD_FLF); // Support for Front Line Force [APG]RoboCop[CL]
6316+
m_Mods.AddMod("arena", "hl", MOD_GEARBOX); // Support for HL: Arena [APG]RoboCop[CL]
6317+
m_Mods.AddMod("hlc", "foundation", MOD_HL_DM); // Support for HL: Legacy [APG]RoboCop[CL]
63146318

63156319
#endif
63166320
// same for linux & windows

0 commit comments

Comments
 (0)