blob: 0e973bceda972b3f658da09650c71a51aae39c69 (
plain)
1
2
3
4
5
6
7
8
|
/**
* Handles the warning packet
* on client this spawns a message box you can't close for 2 seconds
* @param {Array} args ban reason
*/
export const handleBB = (args: string[]) => {
alert(args[1]);
};
|