Skip to content

Commit

Permalink
Lowered Chirr projectile lifetime from 5 -> 2.
Browse files Browse the repository at this point in the history
  • Loading branch information
Moffein committed Dec 24, 2022
1 parent f17ac65 commit b9918ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Starstorm 2/StarstormPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class StarstormPlugin : BaseUnityPlugin
{
internal const string guid = "com.ChirrLover.Starstorm2Unofficial";
internal const string modName = "Starstorm 2 Unofficial";
internal const string version = "0.5.12";
internal const string version = "0.5.13";

public static StarstormPlugin instance;

Expand Down
2 changes: 1 addition & 1 deletion Starstorm 2/Survivors/Chirr/ChirrCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ private GameObject BuildChirrDart()

ProjectileSimple ps = projectilePrefab.GetComponent<ProjectileSimple>();
ps.desiredForwardSpeed = 130f;
ps.lifetime = 5f;
ps.lifetime = 2f;

ProjectileSteerTowardTarget pst = projectilePrefab.GetComponent<ProjectileSteerTowardTarget>();
pst.rotationSpeed = 20f;
Expand Down

0 comments on commit b9918ca

Please sign in to comment.