Commit 2310bbe1 authored by nanahira's avatar nanahira

so many problems with csharp

parent 5169b7b2
Pipeline #4267 passed with stages
in 8 minutes and 14 seconds
......@@ -123,7 +123,7 @@ namespace YGOSharp
return false;
if(!allow_tcg && ((cardOt & 0x3) == 0x2))
return false;
if(hostInfoRule == 4 && !(cardOt & 0x8) && (cardOt & 0x3)) { // in CCG duels, cards labeled with ither OCG or TCG, but not CCG, would not be allowed.
if(hostInfoRule == 4 && (cardOt & 0x8) == 0 && (cardOt & 0x3) != 0) { // in CCG duels, cards labeled with either OCG or TCG, but not CCG, would not be allowed.
return false;
}
return true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment