MCPcopy Create free account
hub / github.com/TyphoonMC/TyphoonCore / WriteString

Method WriteString

utils.go:272–280  ·  view source on GitHub ↗
(s string)

Source from the content-addressed store, hash-verified

270}
271
272func (player *Player) WriteString(s string) (err error) {
273 buff := []byte(s)
274 err = player.WriteVarInt(len(buff))
275 if err != nil {
276 return err
277 }
278 _, err = player.io.wtr.Write(buff)
279 return err
280}
281
282func (player *Player) WriteStringRestricted(s string, max int) (err error) {
283 buff := []byte(s)

Callers 11

WriteMethod · 0.80
WriteMethod · 0.80
WriteMethod · 0.80
WriteMethod · 0.80
WriteMethod · 0.80
WriteMethod · 0.80
WriteMethod · 0.80
WriteMethod · 0.80
WriteMethod · 0.80
WriteMethod · 0.80
writeToMethod · 0.80

Calls 2

WriteVarIntMethod · 0.95
WriteMethod · 0.65

Tested by

no test coverage detected