TModLoader v1.4.4.9
TModLoader source code documentation
Loading...
Searching...
No Matches

◆ CommandType

A flag enum representing context where this command operates.

Enumerator
Chat 

Command can be used in Chat in SP and MP.

Server 

Command is executed by server in MP.

Console 

Command can be used in server console during MP.

World 

Command can be used in Chat in SP and MP, but executes on the Server in MP. (SinglePlayer ? Chat : Server)

Definition at line 7 of file CommandType.cs.

8{
10 Chat = 1,
12 Server = 2,
14 Console = 4,
16 World = 8
17}
@ Console
Command can be used in server console during MP.