mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-02-08 17:32:14 +00:00
enabled drop case
This commit is contained in:
parent
29a4192ccc
commit
654e2273cc
1 changed files with 5 additions and 2 deletions
|
@ -5,6 +5,9 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.137 2002/09/09 02:26:55 niceass
|
||||||
|
// enabled drop case
|
||||||
|
//
|
||||||
// Revision 1.136 2002/09/08 12:50:52 jbravo
|
// Revision 1.136 2002/09/08 12:50:52 jbravo
|
||||||
// Tuned the scaling ctb respawn system a bit and defaulted g_RQ3_ctb_respawndelay
|
// Tuned the scaling ctb respawn system a bit and defaulted g_RQ3_ctb_respawndelay
|
||||||
// to 0
|
// to 0
|
||||||
|
@ -1114,8 +1117,8 @@ void RQ3_Cmd_Drop_f(gentity_t * ent)
|
||||||
Cmd_DropItem_f(ent);
|
Cmd_DropItem_f(ent);
|
||||||
} else if (Q_stricmp(cmd, "weapon") == 0) {
|
} else if (Q_stricmp(cmd, "weapon") == 0) {
|
||||||
Cmd_DropWeapon_f(ent);
|
Cmd_DropWeapon_f(ent);
|
||||||
// } else if (Q_stricmp(cmd, "case") == 0) {
|
} else if (Q_stricmp(cmd, "case") == 0) {
|
||||||
// Cmd_Dropcase_f(ent);
|
Cmd_Dropcase_f(ent);
|
||||||
} else {
|
} else {
|
||||||
trap_SendServerCommand(ent - g_entities, va("print \"unknown item: %s\n\"", cmd));
|
trap_SendServerCommand(ent - g_entities, va("print \"unknown item: %s\n\"", cmd));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue