summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/map/pc.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 84ad0f05e..da8eaf022 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -3075,7 +3075,7 @@ int pc_isUseitem(struct map_session_data *sd,int n)
break;
case 601: // Fly Wing
case 12212: // Giant Fly Wing
- if( map[sd->bl.m].flag.noteleport || map_flag_gvg(sd->bl.m) || !guild_canescape(sd) )
+ if( map[sd->bl.m].flag.noteleport || map_flag_gvg(sd->bl.m) )
{
clif_skill_teleportmessage(sd,0);
return 0;
@@ -3093,11 +3093,6 @@ int pc_isUseitem(struct map_session_data *sd,int n)
clif_displaymessage(sd->fd, "Duel: Can't use this item in duel.");
return 0;
}
- if( !guild_canescape(sd) )
- { // Guild Wars
- clif_displaymessage(sd->fd, "Guild Wars: Cannot escape in battle");
- return 0;
- }
if( nameid != 601 && nameid != 12212 && map[sd->bl.m].flag.noreturn )
return 0;
break;