Skip to content

Commit

Permalink
Duh, fixed these
Browse files Browse the repository at this point in the history
  • Loading branch information
Causeless committed Dec 4, 2024
1 parent 753d8ab commit 186d4c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ end

function SyncedUpdate(self)
if self.ejectingShells then
MovableMan:AddParticle(shell);
for i = 1, #self.ejectingShells do
MovableMan:AddParticle(self.ejectingShells[i]);
end
self.ejectingShells = nil;
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ end

function SyncedUpdate(self)
if self.smoke then
MovableMan:AddParticle(smoke);
MovableMan:AddParticle(self.smoke);
self.smoke = nil;
end
end

0 comments on commit 186d4c8

Please sign in to comment.