1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-08-13 16:53:50 -04:00

Added aliases /j and /q

This commit is contained in:
Sebastian Kaspari 2010-03-10 22:15:20 +01:00
parent 9d7e360e7c
commit e0284da95f

View File

@ -76,6 +76,10 @@ public class CommandParser
commands.put("devoice", new DevoiceHandler());
commands.put("kick", new KickHandler());
commands.put("query", new QueryHandler());
// Aliases
commands.put("j", commands.get("join"));
commands.put("q", commands.get("query"));
}
/**