From: Juhu <5894800-Juhu_@users.noreply.gitlab.com> Date: Sat, 29 Jan 2022 19:46:34 +0000 (+0100) Subject: change movetype for players before they are landed in battle royale from MOVETYPE_FLY... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=6089261c54323cc99e90ebafc01a97a3e96bb857;p=xonotic%2Fxonotic-data.pk3dir.git change movetype for players before they are landed in battle royale from MOVETYPE_FLY_WORLDONLY to MOVETYPE_FLY, they fly through stuff otherwise --- diff --git a/qcsrc/common/gamemodes/gamemode/br/sv_br.qc b/qcsrc/common/gamemodes/gamemode/br/sv_br.qc index a63d3ab62..e872d08ec 100644 --- a/qcsrc/common/gamemodes/gamemode/br/sv_br.qc +++ b/qcsrc/common/gamemodes/gamemode/br/sv_br.qc @@ -1099,7 +1099,7 @@ void br_RoundStart(){ it.angles = vectoangles(dropship_path_direction) + '45 0 0'; it.fixangle = true; it.velocity = '0 0 0'; - set_movetype(it, MOVETYPE_FLY_WORLDONLY); + set_movetype(it, MOVETYPE_FLY); it.flags &= ~FL_PICKUPITEMS; it.flags |= FL_NOTARGET; it.dphitcontentsmask &= ~DPCONTENTS_BODY;