1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-11 17:51:04 +00:00

Defines for server command context flags

This commit is contained in:
Giuseppe Bilotta 2011-08-13 17:35:10 +02:00
parent 153f07fdfb
commit d2c0b4905a
3 changed files with 7 additions and 5 deletions

View file

@ -3267,8 +3267,8 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
privs);
line += processServerCommand(ctx);
send_to_sender = ctx->flags & 1;
send_to_others = ctx->flags & 2;
send_to_sender = ctx->flags & SEND_TO_SENDER;
send_to_others = ctx->flags & SEND_TO_OTHERS;
delete ctx;
}