summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog-Trunk.txt1
-rw-r--r--src/map/clif.c14
2 files changed, 1 insertions, 14 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index ba258b6d4..d2669d084 100644
--- a/Changelog-Trunk.txt
+++ b/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
diff --git a/src/map/clif.c b/src/map/clif.c
index d0e40ba17..8b6eb4267 100644
--- a/src/map/clif.c
+++ b/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));
}