aboutsummaryrefslogtreecommitdiff
path: root/server_conn.go
diff options
context:
space:
mode:
Diffstat (limited to 'server_conn.go')
-rw-r--r--server_conn.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/server_conn.go b/server_conn.go
index ee17978..4b1a246 100644
--- a/server_conn.go
+++ b/server_conn.go
@@ -364,7 +364,10 @@ func handleSrv(sc *serverConn) {
} else if cmd.Type == mt.InitPlayers {
cmd.Type = mt.AddPlayers
}
-
+ sc.client().SendCmd(cmd)
+ case *mt.ToCltSpawnParticle:
+ prependTexture(sc.name, &cmd.Texture)
+ sc.globalParam0(&cmd.NodeParam0)
sc.client().SendCmd(cmd)
}
}