Skip to content

Latest commit

 

History

History
49 lines (43 loc) · 467 Bytes

moderation.md

File metadata and controls

49 lines (43 loc) · 467 Bytes

Not very important.

KickPlayer:
{
    player_id: uint32
    reason: string
}

BanPlayer:
{
    player_id: uint32
    duration: uint64 // in seconds
    reason: string
}

UnbanPlayer:
{
    player: string
}

MutePlayer:
{
    player_id: uint32
    muted: bool
}

SetServerInfo:
{
    desc: string
}

CreateRoom:
{
    room_id: uint32
}

DeleteRoom:
{
    room_id: uint32
}

FreezeRoom:
{
    room_id: uint32
    frozen: bool
}