1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-01-19 08:52:34 +01:00

fixed some minor bugs

--HG--
extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40651
This commit is contained in:
David Anderson 2008-02-18 00:36:10 +00:00
parent 67203d626c
commit c841ba5bb9
3 changed files with 10 additions and 2 deletions

View File

@ -38,6 +38,10 @@ ifeq "$(ENGINE)" "orangebox"
INCLUDE += -I$(HL2SDK)/public/game/server
SRCDS = $(SRCDS_BASE)/orangebox
endif
ifeq "$(ENGINE)" ""
echo "You must supply ENGINE=orangebox or ENGINE=original"
false
endif
LINK += $(HL2SDK)/linux_sdk/tier1_i486.a vstdlib_i486.so tier0_i486.so

View File

@ -166,7 +166,7 @@ void StubPlugin::Hook_ClientCommand(edict_t *pEntity)
CCommand args;
#endif
if (!pEntity || !pEntity->IsFree())
if (!pEntity || pEntity->IsFree())
{
return;
}

View File

@ -35,9 +35,13 @@ ifeq "$(ENGINE)" "orangebox"
HL2PUB = $(HL2SDK_OB)/public
CFLAGS += -DENGINE_ORANGEBOX
METAMOD = $(SOURCEMM16)
INCLUDE += -I$(HL2SDK)/game/server
INCLUDE += -I$(HL2SDK)/public/game/server
SRCDS = $(SRCDS_BASE)/orangebox
endif
ifeq "$(ENGINE)" ""
echo "You must supply ENGINE=orangebox or ENGINE=original"
false
endif
LINK += $(HL2SDK)/linux_sdk/tier1_i486.a vstdlib_i486.so tier0_i486.so