X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fclient%2Fmovetypes.qc;h=88e921cbeace695f5875776708a4da35e0e3cf8d;hp=2e75a1bf87bd12af2854bc1dd5d0ee0d323cac56;hb=5e5f85d9e3dd2bb2905d9a0336354a0ff83063af;hpb=5792233348864c255d2a73e2d443d3c6b6b7205b diff --git a/qcsrc/client/movetypes.qc b/qcsrc/client/movetypes.qc index 2e75a1bf8..88e921cbe 100644 --- a/qcsrc/client/movetypes.qc +++ b/qcsrc/client/movetypes.qc @@ -92,7 +92,7 @@ void _Movetype_CheckWaterTransition(entity ent) // SV_CheckWaterTransition if(!ent.move_watertype) { // just spawned here - if(!autocvar_sv_gameplayfix_fixedcheckwatertransition) + if(!autocvar_cl_gameplayfix_fixedcheckwatertransition) { ent.move_watertype = contents; ent.move_waterlevel = 1; @@ -114,7 +114,7 @@ void _Movetype_CheckWaterTransition(entity ent) // SV_CheckWaterTransition else { ent.move_watertype = CONTENT_EMPTY; - ent.move_waterlevel = (autocvar_sv_gameplayfix_fixedcheckwatertransition ? 0 : contents); + ent.move_waterlevel = (autocvar_cl_gameplayfix_fixedcheckwatertransition ? 0 : contents); } }