Change always_drop to flag_drop to mirror oztf

This commit is contained in:
Finny Merrill 2004-02-15 22:27:42 +00:00
parent 8fa22fd824
commit b83e8f5f93

View file

@ -704,12 +704,12 @@ void() TeamFortress_ReloadCurrentWeapon =
void() TeamFortress_DropItems =
{
local entity tg;
local string st = infokey(NIL, "ad");
local float always = FALSE;
local string st;
st = infokey(NIL, "flag_drop");
if (!st)
st = infokey(NIL, "always_drop");
st = infokey(NIL, "fd");
if (st == "on" || st == "yes" || st == "1")
always = TRUE;