mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Fix for #7322.
This commit is contained in:
@@ -331,9 +331,7 @@
|
|||||||
if(slot_l_ear)
|
if(slot_l_ear)
|
||||||
if(H.l_ear)
|
if(H.l_ear)
|
||||||
return 0
|
return 0
|
||||||
if( w_class < 2 )
|
if( (w_class > 1) && !(slot_flags & SLOT_EARS) )
|
||||||
return 1
|
|
||||||
if( !(slot_flags & SLOT_EARS) )
|
|
||||||
return 0
|
return 0
|
||||||
if( (slot_flags & SLOT_TWOEARS) && H.r_ear )
|
if( (slot_flags & SLOT_TWOEARS) && H.r_ear )
|
||||||
return 0
|
return 0
|
||||||
@@ -341,9 +339,7 @@
|
|||||||
if(slot_r_ear)
|
if(slot_r_ear)
|
||||||
if(H.r_ear)
|
if(H.r_ear)
|
||||||
return 0
|
return 0
|
||||||
if( w_class < 2 )
|
if( (w_class > 1) && !(slot_flags & SLOT_EARS) )
|
||||||
return 1
|
|
||||||
if( !(slot_flags & SLOT_EARS) )
|
|
||||||
return 0
|
return 0
|
||||||
if( (slot_flags & SLOT_TWOEARS) && H.l_ear )
|
if( (slot_flags & SLOT_TWOEARS) && H.l_ear )
|
||||||
return 0
|
return 0
|
||||||
|
|||||||
Reference in New Issue
Block a user