SkyParams forwarding

master
HimbeerserverDE 2021-08-30 19:11:18 +02:00
parent 5b7e47a156
commit a363956e70
No known key found for this signature in database
GPG Key ID: 1A651504791E6A8B
1 changed files with 6 additions and 0 deletions

View File

@ -340,6 +340,12 @@ func handleSrv(sc *serverConn) {
}
prepend(sc.name, &cmd.Filename)
sc.client().SendCmd(cmd)
case *mt.ToCltSkyParams:
for i := range cmd.Textures {
prependTexture(sc.name, &cmd.Textures[i])
}
sc.client().SendCmd(cmd)
}
}