X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fwarpzonelib%2Fclient.qc;h=85aba53fcc4d9463980b2b5da0d246021f1d911c;hp=9f540bc50a9a59ce73a8ef7d04da683af9a6d4a8;hb=a08620064dbe59abd194f302768d65934b87b6df;hpb=b0a06888ff894f9d334f6277b996f98ae8a665a0 diff --git a/qcsrc/warpzonelib/client.qc b/qcsrc/warpzonelib/client.qc index 9f540bc50a..85aba53fcc 100644 --- a/qcsrc/warpzonelib/client.qc +++ b/qcsrc/warpzonelib/client.qc @@ -17,8 +17,6 @@ void WarpZone_Fade_PreDraw() void WarpZone_Read(float isnew) { - float f; - warpzone_warpzones_exist = 1; if (!self.enemy) { @@ -27,7 +25,7 @@ void WarpZone_Read(float isnew) } self.classname = "trigger_warpzone"; - f = ReadByte(); + int f = ReadByte(); self.warpzone_isboxy = (f & 1); if(f & 4) { @@ -84,11 +82,10 @@ void WarpZone_Read(float isnew) void WarpZone_Camera_Read(float isnew) { - float f; warpzone_cameras_exist = 1; self.classname = "func_warpzone_camera"; - f = ReadByte(); + int f = ReadByte(); if(f & 4) { self.origin_x = ReadCoord(); @@ -158,7 +155,6 @@ void WarpZone_Teleported_Read(float isnew) float warpzone_fixingview; float warpzone_fixingview_drawexteriormodel; -float autocvar_chase_active; void WarpZone_View_Outside() { @@ -188,12 +184,12 @@ vector WarpZone_FixNearClip(vector o, vector c0, vector c1, vector c2, vector c3 entity e; float pd; - mi_x = min(o_x, c0_x, c1_x, c2_x, c3_x); - ma_x = max(o_x, c0_x, c1_x, c2_x, c3_x); - mi_y = min(o_y, c0_y, c1_y, c2_y, c3_y); - ma_y = max(o_y, c0_y, c1_y, c2_y, c3_y); - mi_z = min(o_z, c0_z, c1_z, c2_z, c3_z); - ma_z = max(o_z, c0_z, c1_z, c2_z, c3_z); + mi_x = min(o.x, c0_x, c1_x, c2_x, c3_x); + ma_x = max(o.x, c0_x, c1_x, c2_x, c3_x); + mi_y = min(o.y, c0_y, c1_y, c2_y, c3_y); + ma_y = max(o.y, c0_y, c1_y, c2_y, c3_y); + mi_z = min(o.z, c0_z, c1_z, c2_z, c3_z); + ma_z = max(o.z, c0_z, c1_z, c2_z, c3_z); e = WarpZone_Find(mi, ma); if(e) @@ -226,7 +222,7 @@ void WarpZone_FixPMove() } #ifndef KEEP_ROLL -var float autocvar_cl_rollkillspeed = 10; +float autocvar_cl_rollkillspeed = 10; #endif void WarpZone_FixView() { @@ -257,7 +253,7 @@ void WarpZone_FixView() rick = getproperty(VF_CL_VIEWANGLES_Z); rick *= f; setproperty(VF_CL_VIEWANGLES_Z, rick); - ang_z *= f; + ang.z *= f; #endif setproperty(VF_ORIGIN, org);