Fix ActionSet

This commit is contained in:
Asriel Camora
2023-11-02 01:01:03 -07:00
parent 74195b59eb
commit ac109ae711
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ public struct ActionSet
private static int FromAction(ActionType action)
{
var ret = Simulator.AcceptedActionsLUT[(byte)action];
if (ret == 0)
if (ret == -1)
throw new ArgumentOutOfRangeException(nameof(action), action, $"Action {action} is unsupported in {nameof(ActionSet)}.");
return ret;
}