Deleted rubyscreen.dll, eradicated semicolons from when... statements, compiling is now before setting up the system, appeased vocal dissenters

This commit is contained in:
Maruno17
2020-11-26 21:10:45 +00:00
parent 017cdb8d0f
commit eb22e49d9b
73 changed files with 905 additions and 817 deletions

View File

@@ -56,9 +56,9 @@ class TriadCard
aType = @type
oType = opponent.type
case PBTypes.getEffectiveness(aType,oType)
when PBTypeEffectiveness::INEFFECTIVE; return -2
when PBTypeEffectiveness::NOT_EFFECTIVE_ONE; return -1
when PBTypeEffectiveness::SUPER_EFFECTIVE_ONE; return 1
when PBTypeEffectiveness::INEFFECTIVE then return -2
when PBTypeEffectiveness::NOT_EFFECTIVE_ONE then return -1
when PBTypeEffectiveness::SUPER_EFFECTIVE_ONE then return 1
end
return 0
end