Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.78 KB | None | 0 0
  1.  src/map/clif.cpp   |  8 ++++----
  2.  1 files changed, 8 insertions(+), 0 deletions(-)
  3.  
  4. diff --git a/src/map/clif.cpp b/src/map/clif.cpp
  5. index 6efe626..fc6f110 100644
  6. --- a/src/map/clif.cpp
  7. +++ b/src/map/clif.cpp
  8. @@ -13295,10 +13295,10 @@ void clif_parse_CreateGuild(int fd,struct map_session_data *sd){
  9.         return;
  10.     }
  11.  
  12. -   if(sd->clan){
  13. +   /*if(sd->clan){
  14.         // Should display a clientside message "You are currently joined in Clan !!" so we ignore it
  15.         return;
  16. -   }
  17. +   }*/
  18.  
  19.     guild_create(sd, name);
  20.  }
  21. @@ -13527,9 +13527,9 @@ int clif_sub_guild_invite(int fd, struct map_session_data *sd, struct map_sessio
  22.     }
  23.  
  24.     // Players in a clan can not join a guild
  25. -   if(t_sd && t_sd->clan){
  26. +   /*if(t_sd && t_sd->clan){
  27.         return 1;
  28. -   }
  29. +   }*/
  30.  
  31.     guild_invite(sd, t_sd);
  32.     return 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement