diff options
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/intif.c | 4 | ||||
-rw-r--r-- | src/map/script.c | 2 | ||||
-rw-r--r-- | src/map/skill.h | 1 |
3 files changed, 3 insertions, 4 deletions
diff --git a/src/map/intif.c b/src/map/intif.c index a2bdbe7ee..5b5ddc8d7 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -473,8 +473,8 @@ int intif_guild_skillup(int guild_id,int skill_num,int account_id,int flag) WFIFOL(inter_fd, 2)=guild_id;
WFIFOL(inter_fd, 6)=skill_num;
WFIFOL(inter_fd,10)=account_id;
- WFIFOL(inter_fd,14)=flag;
- WFIFOSET(inter_fd,18);
+ //WFIFOL(inter_fd,14)=flag;
+ WFIFOSET(inter_fd,14);
return 0;
}
// ギルド同盟/敵対要求
diff --git a/src/map/script.c b/src/map/script.c index 534e50cd1..1636c7f45 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -3182,7 +3182,7 @@ int buildin_getskilllv(struct script_state *st) * skill_id = 10000 : GD_APPROVAL
* 10001 : GD_KAFRACONTACT
* 10002 : GD_GUARDIANRESEARCH
- * 10003 : GD_CHARISMA
+ * 10003 : GD_GUARDUP
* 10004 : GD_EXTENSION
*------------------------------------------
*/
diff --git a/src/map/skill.h b/src/map/skill.h index 468e5d3af..dd035b8af 100644 --- a/src/map/skill.h +++ b/src/map/skill.h @@ -835,7 +835,6 @@ enum { GD_APPROVAL=10000,
GD_KAFRACONTACT=10001,
GD_GUARDIANRESEARCH=10002,
- GD_CHARISMA=10003,
GD_GUARDUP=10003,
GD_EXTENSION=10004,
GD_GLORYGUILD=10005,
|