Now Novices without lvl5 basic skill can be partied (bugreport:1131).

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13056 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
ultramage
2008-08-09 15:02:24 +00:00
parent 104f28b34b
commit 659d7539ed
2 changed files with 1 additions and 14 deletions

View File

@@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2008/08/09
* Now Novices without lvl5 basic skill can be partied (bugreport:1131)
* Fixed login printing raw passwdenc passwords to console (bugreport:826) [ultramage]
- added strlib function bin2hex()
- cleaned up the md5calc interface a bit

View File

@@ -9846,25 +9846,11 @@ void clif_parse_PartyInvite2(int fd, struct map_session_data *sd)
*------------------------------------------*/
void clif_parse_ReplyPartyInvite(int fd,struct map_session_data *sd)
{
if( battle_config.basic_skill_check && pc_checkskill(sd,NV_BASIC) < 5 )
{
party_reply_invite(sd,RFIFOL(fd,2),-1);
clif_skill_fail(sd,1,0,4);
return;
}
party_reply_invite(sd,RFIFOL(fd,2),RFIFOL(fd,6));
}
void clif_parse_ReplyPartyInvite2(int fd,struct map_session_data *sd)
{
if( battle_config.basic_skill_check && pc_checkskill(sd,NV_BASIC) < 5 )
{
party_reply_invite(sd,RFIFOL(fd,2),-1);
clif_skill_fail(sd,1,0,4);
return;
}
party_reply_invite(sd,RFIFOL(fd,2),RFIFOB(fd,6));
}