> Implemented Channel System to replace @main. See tid:80999 for full details. (Hercules 7ec1e8f, 1e87c09)
* Adds @join and @channel commands to manipulate chat channels. (see doc/atcommands.txt) * Speak in a #channel by sending a whisper to #channel or binding your global chat to the channel (@channel bindto <#channel_name>). * Automatically join local map channels (#map) and guild ally channels (#ally), with mapflag 'nomapchannelautojoin' to disable the channel for a map (optional). * Allow users to create private channels if 'allow_user_channel_creation' is true. * Set default channels, text colors, and other settings in conf/channels.conf. > Other changes: * Improved overall guild processing/lookup by creating a cached guild state. * Fixed a bug where equipping a garment would override costume garment. * Removed clif_message and merged it with clif_disp_overhead, since both use the same packet. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@17228 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
@@ -43,7 +43,6 @@ char default_codepage[32] = ""; //Feature by irmin.
|
||||
|
||||
static struct accreg *accreg_pt;
|
||||
unsigned int party_share_level = 10;
|
||||
char main_chat_nick[16] = "Main";
|
||||
|
||||
// recv. packet list
|
||||
int inter_recv_packet_length[] = {
|
||||
@@ -667,8 +666,6 @@ static int inter_config_read(const char* cfgName)
|
||||
party_share_level = atoi(w2);
|
||||
else if(!strcmpi(w1,"log_inter"))
|
||||
log_inter = atoi(w2);
|
||||
else if(!strcmpi(w1,"main_chat_nick"))
|
||||
safestrncpy(main_chat_nick, w2, sizeof(main_chat_nick));
|
||||
else if(!strcmpi(w1,"import"))
|
||||
inter_config_read(w2);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user