 Issue Information
Issue Information
				- 
						
						#005174 
- 
								
								
								2 - Fair 
- 
								
								
								Fixed 
 Issue Confirmations
Issue Confirmations
					- 
							Yes (0)No (0)
								
									
								
									
								
									
								
								Originally posted by NANORAY
when i use dragon breath to a player the player cant even move or use use skills.
							
							when i use dragon breath to a player the player cant even move or use use skills.
												Originally posted by Ind
its related to sc.opt1 burning in clif.c
												
											
										its related to sc.opt1 burning in clif.c
												Originally posted by Protimus
Please, someone test for me if this patch works.
												
											
										Please, someone test for me if this patch works.
Index: clif.c
===================================================================
--- clif.c (revision 15317)
+++ clif.c (working copy)
@@ -9320,7 +9320,7 @@
  return;
  }
- if (sd->ud.skilltimer != INVALID_TIMER || sd->sc.opt1)
+ if (sd->ud.skilltimer != INVALID_TIMER || (sd->sc.opt1 && sd->sc.opt1 != OPT1_BURNING))
  break;
  if (sd->sc.count && (
@@ -9640,7 +9640,7 @@
  return;
  }
- if (sd->sc.opt1 > 0 && sd->sc.opt1 != OPT1_STONEWAIT)
+ if (sd->sc.opt1 > 0 && sd->sc.opt1 != OPT1_STONEWAIT && sd->sc.opt1 != OPT1_BURNING)
  return;
  
  //This flag enables you to use items while in an NPC. [Skotlex]
@@ -9679,7 +9679,7 @@
  if(sd->npc_id) {
  if (sd->npc_id != sd->npc_item_flag)
  return;
- } else if (sd->state.storage_flag || sd->sc.opt1)
+ } else if (sd->state.storage_flag || (sd->sc.opt1 && sd->sc.opt1 != OPT1_BURNING))
  ; //You can equip/unequip stuff while storage is open/under status changes
  else if (pc_cant_act(sd))
  return;
												
												
												Originally posted by Ind
it partially works because there are more occurences. I'll get them fixed
												
											
										it partially works because there are more occurences. I'll get them fixed
												Originally posted by Ind
Fixed in [rev=15328]
												
											
										Fixed in [rev=15328]


 0
 0 
					
 
  
								
							









