This commit is contained in:
Leijurv 2018-08-14 15:42:59 -07:00
parent 9aefcebddf
commit c780454b78
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A

View File

@ -44,5 +44,9 @@ public interface ActionCosts extends ActionCostsButOnlyTheOnesThatMakeMickeyDieI
*/
double PLACE_ONE_BLOCK_COST = 20;
/**
* don't make this Double.MAX_VALUE because it's added to other things, maybe other COST_INFs,
* and that would make it overflow to negative
*/
double COST_INF = 1000000;
}