Experimented with loosening traction with an Armour Upgrade (Forward works, strafing fails)

This commit is contained in:
WayofTime 2016-09-26 06:49:44 -04:00
parent a1eb8aad56
commit 82a73ba0cd
4 changed files with 53 additions and 16 deletions

View file

@ -156,7 +156,15 @@ public class LivingArmour implements ILivingArmour
continue;
}
upgrade.onTick(world, player, this);
if (world.isRemote && upgrade.runOnClient())
{
upgrade.onTick(world, player, this);
}
}
if (world.isRemote)
{
return;
}
List<String> allowedUpgradesList = new ArrayList<String>();