mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-10 14:42:05 +00:00
SERVER: Wall Chalk should trigger 'first raise'
This commit is contained in:
parent
0e3a08206f
commit
b2dbc03f06
1 changed files with 5 additions and 10 deletions
|
@ -129,8 +129,6 @@ void () WallWeapon_TouchTrigger =
|
|||
{
|
||||
entity oldent;
|
||||
float tempf, tempf1, tempf2, tempf3;
|
||||
float startframe,endframe;
|
||||
string modelname;
|
||||
|
||||
float wcost;
|
||||
|
||||
|
@ -411,16 +409,13 @@ void () WallWeapon_TouchTrigger =
|
|||
other.currentmag = getWeaponMag(self.weapon);
|
||||
tempe = self;
|
||||
self = other;
|
||||
startframe = GetFrame(self.weapon,TAKE_OUT_START);
|
||||
endframe = GetFrame(self.weapon,TAKE_OUT_END);
|
||||
modelname = GetWeaponModel(self.weapon, 0);
|
||||
|
||||
if (self.weapon != W_KAR_SCOPE && self.weapon != W_HEADCRACKER && !IsDualWeapon(self.weapon)) {
|
||||
self.weapon2model = "";
|
||||
}
|
||||
|
||||
SwitchWeapon(self.weapon);
|
||||
Set_W_Frame (startframe, endframe, 0, 0, 0, SUB_Null, modelname, false, S_BOTH);//FIXME
|
||||
|
||||
if (GetFrame(self.weapon, FIRST_TAKE_START) != 0)
|
||||
Weapon_PlayViewModelAnimation(ANIM_FIRST_TAKE, SUB_Null, 0);
|
||||
else
|
||||
Weapon_PlayViewModelAnimation(ANIM_TAKE_OUT, SUB_Null, 0);
|
||||
|
||||
#ifndef FTE
|
||||
|
||||
|
|
Loading…
Reference in a new issue