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