Bläddra i källkod

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
ultramage 17 år sedan
förälder
incheckning
659d7539ed
2 ändrade filer med 1 tillägg och 14 borttagningar
  1. 1 0
      Changelog-Trunk.txt
  2. 0 14
      src/map/clif.c

+ 1 - 0
Changelog-Trunk.txt

@@ -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

+ 0 - 14
src/map/clif.c

@@ -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));
 }