You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
371 B

  1. -- THIS ENTIRE THING WILL NOT BE USED PROBABLY, JUST TESTING OUT POSSIBLE WAYS THIS COULD WORK
  2. Abilities = {}
  3. function Abilities.orbitSync() --Synchronise speed with closest orbit
  4. end
  5. function Abilities.update(dt)
  6. for i, #player.abilities do
  7. if player.abilities[i] == "orbitSync" then
  8. Abilities.orbitSync()
  9. end
  10. end
  11. end