diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-12 21:14:28 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-12 21:14:28 +0000 |
commit | 3c9a4b95c3612e0925baf1b116460e0c07cd6d2f (patch) | |
tree | e958d75a53e32c98f8c67550e81b781a96c97cf8 /src/map/guild.c | |
parent | 05d3b8fa90b371b23db1b934945837276b3ab545 (diff) | |
download | hercules-3c9a4b95c3612e0925baf1b116460e0c07cd6d2f.tar.gz hercules-3c9a4b95c3612e0925baf1b116460e0c07cd6d2f.tar.bz2 hercules-3c9a4b95c3612e0925baf1b116460e0c07cd6d2f.tar.xz hercules-3c9a4b95c3612e0925baf1b116460e0c07cd6d2f.zip |
- Fixed npc_checknear's distance check returning the opposite of what it should (false when the range is correct and viceversa)
- SL_STIN/SL_STUN have dex-reducable casting times now.
- Added a warning on item loading when an item is of equippable type but has no equippable position.
- Turning an alliance to an opposition won't work now during WoE
- Slaves can summon other mobs now. The only ones who can't do this are player summoned mobs.
- Merged the following functions for faster processing of items:
clif_storageitemlist + clif_storageequiplist = clif_storagelist
clif_guildstorageitemlist + clif_guildstorageequiplist = clif_guildstoragelist
clif_itemlist + clif_equiplist = clif_inventorylist
- Increased max knockback value support to 25.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7109 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/guild.c')
-rw-r--r-- | src/map/guild.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/map/guild.c b/src/map/guild.c index 8e4a16901..78ef6188d 100644 --- a/src/map/guild.c +++ b/src/map/guild.c @@ -1410,9 +1410,14 @@ int guild_opposition(struct map_session_data *sd,int char_id) if(g->alliance[i].opposition==1){ // ‚·‚Å‚É“G‘Î
clif_guild_oppositionack(sd,2);
return 0;
- }else // “¯–¿”jŠü
+ } else { //Change alliance to opposition.
+ if(agit_flag) {
+ clif_displaymessage(sd->fd,"You cannot break an alliance during Guild Wars!");
+ return 0;
+ }
intif_guild_alliance( sd->status.guild_id,tsd->status.guild_id,
sd->status.account_id,tsd->status.account_id,8 );
+ }
}
}
|