Experimented with loosening traction with an Armour Upgrade (Forward works, strafing fails)
This commit is contained in:
parent
a1eb8aad56
commit
82a73ba0cd
4 changed files with 53 additions and 16 deletions
|
@ -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>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue