djcev.com

//

Git Repos / fte_dogmode / qc / compat / copper.qc

Last update to this file was on 2025-03-30 at 19:29.

Show copper.qc

//==============================================================================
// very loose support for mods built on Copper -- CEV
//==============================================================================

//======================================================================
// forward declarations
//======================================================================

#ifdef SSQC
void() compat_copper_item_spawnflags; // process item spawnflags
#endif

//------------------------------------------------------------------------------

//======================================================================
// spawnflag & entity field handling -- CEV
//======================================================================

#ifdef SSQC
//----------------------------------------------------------------------
void() compat_copper_item_spawnflags =
{
// spawnflag 4 is SUSPENDED in copper -- CEV
if (self.spawnflags & 4)
{
self.spawnflags &= ~4;
self.spawnflags |= SPAWNFLAG_ITEM_SUSPENDED;
}
};
#endif

Return to the top of this page or return to the overview of this repo.

Log copper.qc

Date Commit Message Author + -
2025-03-30 Big commit. Entity networking, etc. cev +30  

Return to the top of this page or return to the overview of this repo.