mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Fixed view distance bug
This commit is contained in:
parent
e19d170b61
commit
bdab3972c2
@ -136,7 +136,7 @@ impl Sys {
|
||||
if settings
|
||||
.max_view_distance
|
||||
.zip(view_distance)
|
||||
.map(|(vd, max)| vd > max)
|
||||
.map(|(max, vd)| vd > max)
|
||||
.unwrap_or(false)
|
||||
{
|
||||
client.notify(ServerMsg::SetViewDistance(
|
||||
|
Loading…
Reference in New Issue
Block a user