Compare commits

...

4 Commits

4 changed files with 6 additions and 11 deletions

View File

@ -577,12 +577,6 @@ HUD_Draw(void)
Damage_Draw();
}
string g_specmodes[] = {
"Free Camera",
"Third Person",
"First Person"
};
/* specatator main entry */
void
HUD_DrawSpectator(void)

View File

@ -48,10 +48,8 @@ Game_Worldspawn(void)
{
precache_model("models/player.mdl");
precache_model("models/w_weaponbox.mdl");
Sound_Precache("player.die");
Sound_Precache("player.insane");
Sound_Precache("player.fall");
Sound_Precache("player.lightfall");
Sound_Precache("Player.FlashLightOff");
Sound_Precache("Player.FlashLightOn");
Player_Precache();
Weapons_Init();

View File

@ -125,6 +125,7 @@ void w_hammer_release(player pl)
Damage_Apply(trace_ent, self, hdmg, WEAPON_HAMMER, DMG_BLUNT);
makevectors(pl.v_angle);
if (trace_ent.classname == "monster_scientist") {
trace_ent.movetype = MOVETYPE_TOSS;
trace_ent.velocity = v_forward * 768 + v_up * 256;

View File

@ -55,4 +55,6 @@ alias sv_gamemode sh_realistic
// video settings
seta gl_overbright 0
seta gl_ldr 1
seta r_lightmap_format rgb8
seta r_lightmap_format rgb8
exec skill_scihunt.cfg