Browse Source

Added bypass for updatecheck for UT99 and UT2K4

pull/314/head
Daniel Gibbs 10 years ago
parent
commit
8e2b5541c8
  1. 4
      functions/fn_monitor

4
functions/fn_monitor

@ -69,8 +69,10 @@ if [ ! -f "${lockselfname}" ]; then
echo "To enable monitor run ${selfname} start"
exit
fi
updatecheck=$(ps -ef|grep "${selfname} update"|grep -v grep|wc -l)
if [ "${updatecheck}" = "0" ]; then
if [ "${updatecheck}" = "0" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament 2004" ]; then
fn_printdots "Checking session: CHECKING"
fn_scriptlog "Checking session: CHECKING"
sleep 1

Loading…
Cancel
Save