fixing Method checkResourceToBuild
This commit is contained in:
parent
4c56518ba0
commit
458905ddd4
|
@ -85,7 +85,7 @@ public class Player {
|
|||
*/
|
||||
public boolean build(Config.Structure structure){
|
||||
List<Config.Resource> costs = structure.getCosts();
|
||||
if(structureToUse.get(structure) < 1 || !checkRessourceToBuild(costs)){
|
||||
if(structureToUse.get(structure) < 1 || !checkResourceToBuild(costs)){
|
||||
return false;
|
||||
}
|
||||
structureToUse.put(structure, structureToUse.get(structure) - 1);
|
||||
|
|
Loading…
Reference in New Issue