Minor bugfixes
This commit is contained in:
@@ -139,7 +139,7 @@ public class Blocks extends BlockList implements ContentList{
|
|||||||
}};
|
}};
|
||||||
|
|
||||||
ice = new Floor("ice"){{
|
ice = new Floor("ice"){{
|
||||||
dragMultiplier = 0.3f;
|
dragMultiplier = 0.2f;
|
||||||
speedMultiplier = 0.4f;
|
speedMultiplier = 0.4f;
|
||||||
minimapColor = Color.valueOf("b8eef8");
|
minimapColor = Color.valueOf("b8eef8");
|
||||||
hasOres = true;
|
hasOres = true;
|
||||||
|
|||||||
@@ -271,7 +271,7 @@ public class Control extends Module{
|
|||||||
outer:
|
outer:
|
||||||
for(int i = 0; i < content.recipes().size; i ++){
|
for(int i = 0; i < content.recipes().size; i ++){
|
||||||
Recipe recipe = content.recipes().get(i);
|
Recipe recipe = content.recipes().get(i);
|
||||||
if(!recipe.hidden && recipe.requirements != null){
|
if(!recipe.isHidden() && recipe.requirements != null){
|
||||||
for(ItemStack stack : recipe.requirements){
|
for(ItemStack stack : recipe.requirements){
|
||||||
if(!entity.items.has(stack.item, Math.min((int) (stack.amount * unlockResourceScaling), 2000))) continue outer;
|
if(!entity.items.has(stack.item, Math.min((int) (stack.amount * unlockResourceScaling), 2000))) continue outer;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -323,7 +323,7 @@ public class Player extends Unit implements BuilderTrait, CarryTrait, ShooterTra
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(floor.isLiquid){
|
if(floor.isLiquid){
|
||||||
Draw.tint(Color.WHITE, floor.liquidColor, Mathf.clamp(drownTime));
|
Draw.tint(Color.WHITE, floor.liquidColor, Mathf.clamp(drownTime, 0, 0.99f));
|
||||||
}else{
|
}else{
|
||||||
Draw.tint(Color.WHITE);
|
Draw.tint(Color.WHITE);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user