X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Ft_halflife.qc;h=f041dd39659aebd31a8b375b6e14d1fd51820f1c;hp=681c5dc7d3f0998788b485baf38bd495d49a9682;hb=86c9dc7c3696c329496b06375c1e79fb407401ce;hpb=35e8f712933b0ebf9b163b7289cf975825b33803 diff --git a/qcsrc/server/t_halflife.qc b/qcsrc/server/t_halflife.qc index 681c5dc7d3..f041dd3965 100644 --- a/qcsrc/server/t_halflife.qc +++ b/qcsrc/server/t_halflife.qc @@ -1,12 +1,3 @@ -#if defined(CSQC) -#elif defined(MENUQC) -#elif defined(SVQC) - #include "../dpdefs/progsdefs.qh" - #include "../warpzonelib/util_server.qh" - #include "defs.qh" - #include "vehicles/vehicles_def.qh" -#endif - .float roomtype; .float radius; .float pitch; @@ -41,30 +32,3 @@ void spawnfunc_info_node() {} void spawnfunc_env_sound() {} void spawnfunc_light_spot() {} void spawnfunc_func_healthcharger() {} - - -void func_ladder_touch() -{ - if (!other.iscreature) - return; - if (other.vehicle_flags & VHF_ISVEHICLE) - return; - - EXACTTRIGGER_TOUCH; - - other.ladder_time = time + 0.1; - other.ladder_entity = self; -} - -void spawnfunc_func_ladder() -{ - EXACTTRIGGER_INIT; - self.touch = func_ladder_touch; -} - -void spawnfunc_func_water() -{ - EXACTTRIGGER_INIT; - self.touch = func_ladder_touch; -} -