Fix not being able to turn off noclip

This commit is contained in:
Li 2023-04-05 17:37:45 +12:00
parent 7d82f83f64
commit 78bef4b271
2 changed files with 4 additions and 4 deletions

View file

@ -16,8 +16,8 @@ Type=simple
ProtectSystem=full
PrivateDevices=true
StandardError=syslog+console
StandardOutput=syslog+console
StandardError=journal+console
StandardOutput=journal+console
User=horseisle
Group=horseisle

View file

@ -55,11 +55,11 @@ namespace HISP.Player
}
}
}
return noClip;
return this.noClip;
}
set
{
noClip = true;
this.noClip = true;
}
}