Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- for (int i = 0; i < GamePlayer.list.size; ++i)
- {
- GamePlayer p = GamePlayer.list[i];
- if (p.isObserver || p == GamePlayer.me) continue;
- if (p.ship == null || !p.ship.isActive) continue;
- p.ship.Explode();
- }
Add Comment
Please, Sign In to add comment