# HG changeset patch # User Adam Kaminski # Date 1641397974 18000 # Wed Jan 05 10:52:54 2022 -0500 # Node ID 2fdc8e6949e867275ef0531fee93246173d4f2fe # Parent 96d2b45f99e6fbfd177a45595aa1202aa16f7a3a Fixed: clients didn't initialize a sector's friction properly in some cases due to a superfluous check that wasn't removed earlier. diff -r 96d2b45f99e6 -r 2fdc8e6949e8 src/p_spec.cpp --- a/src/p_spec.cpp Wed Jan 05 10:50:04 2022 -0500 +++ b/src/p_spec.cpp Wed Jan 05 10:52:54 2022 -0500 @@ -2363,13 +2363,6 @@ int i; line_t *l = lines; - // [BC] Don't do this in client mode, because the friction for the sector could - // have changed at some point on the server end. - if ( NETWORK_InClientMode() ) - { - return; - } - for (i = 0 ; i < numlines ; i++,l++) { if (l->special == Sector_SetFriction)