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 ProtectSystem=full
PrivateDevices=true PrivateDevices=true
StandardError=syslog+console StandardError=journal+console
StandardOutput=syslog+console StandardOutput=journal+console
User=horseisle User=horseisle
Group=horseisle Group=horseisle

View file

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