class CTile
{
public:
unsigned char m_Index; // what tile it is
unsigned char m_Flags; // flags like orientation
unsigned char m_Skip; // no fucking idea
unsigned char m_Reserved; // not even used anywhere
};
psql
CTextureHandle
object after unloading the handle and it's also not necessary to check if the texture handle is valid when unloading it.
IConsole::Format
function was previously used to format the log and rcon output, but it has become obsolete when the logging was refactored.
The function was still being used to format the output of the show_ips
command in the rcon, which was causing this particular rcon line to have the old log format (e.g. [12:34:56][server]: Value: 0
). Now, IConsole::Print
is used directly, as this causes the output to be sent with the correct format and only to the rcon command user.
The...