1
0
Fork 0
mirror of https://github.com/besterprotocol/besterd synced 2023-12-13 21:00:32 +01:00

Fixed compile error

This commit is contained in:
Tristan B. Kildaire 2020-04-19 13:44:57 +02:00
parent 6ee9b1e00c
commit 39e6f58119

View file

@ -92,7 +92,10 @@ public class BesterServer
public static bool isBuiltInCommand(string payloadType)
{
/* TODO: Implement me */
/* Whether or not `payloadType` is a built-in command */
bool isBuiltIn = true;
return isBuiltIn;
}
}