diff --git a/cl_dll/wscript b/cl_dll/wscript index b516fe5f..294d6c54 100644 --- a/cl_dll/wscript +++ b/cl_dll/wscript @@ -75,6 +75,9 @@ def build(bld): 'message.cpp', 'overview.cpp', 'parsemsg.cpp', + 'particlemgr.cpp', + 'particlemsg.cpp', + 'particlesys.cpp', 'saytext.cpp', 'scoreboard.cpp', 'status_icons.cpp', diff --git a/dlls/buttons.cpp b/dlls/buttons.cpp index 45b07e20..a8853b83 100644 --- a/dlls/buttons.cpp +++ b/dlls/buttons.cpp @@ -310,9 +310,11 @@ void CEnvState::Think( void ) { ALERT(at_console,"DEBUG: env_state \"%s\" turned itself off",STRING(pev->targetname)); if (pev->target) + { ALERT(at_console,": firing %s",STRING(pev->target)); if (pev->noise2) ALERT(at_console," and %s",STRING(pev->noise2)); + } else if (pev->noise2) ALERT(at_console,": firing %s",STRING(pev->noise2)); ALERT(at_console,".\n"); diff --git a/dlls/wscript b/dlls/wscript index cb394c69..c5e5776e 100644 --- a/dlls/wscript +++ b/dlls/wscript @@ -29,6 +29,7 @@ def build(bld): 'agrunt.cpp', 'airtank.cpp', 'aflock.cpp', + 'alias.cpp', 'animating.cpp', 'animation.cpp', 'apache.cpp', @@ -80,11 +81,13 @@ def build(bld): 'items.cpp', 'leech.cpp', 'lights.cpp', + 'locus.cpp', 'maprules.cpp', 'monstermaker.cpp', 'monsters.cpp', 'monsterstate.cpp', 'mortar.cpp', + 'movewith.cpp', 'mp5.cpp', 'multiplay_gamerules.cpp', 'nihilanth.cpp',