Skip to content

Commit

Permalink
undoes a thing, does another thing
Browse files Browse the repository at this point in the history
  • Loading branch information
Mazianni committed Jun 25, 2023
1 parent be51961 commit f47f2e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/controllers/subsystem/processing/projectiles.dm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PROCESSING_SUBSYSTEM_DEF(projectiles)
subsystem_flags = SS_NO_INIT
var/global_max_tick_moves = 15
var/global_pixel_speed = 2
var/global_iterations_per_move = 16
var/global_iterations_per_move = 10

/datum/controller/subsystem/processing/projectiles/proc/set_pixel_speed(new_speed)
global_pixel_speed = new_speed
Expand Down
2 changes: 1 addition & 1 deletion code/modules/projectiles/projectile.dm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
var/trajectory_ignore_forcemove = FALSE //instructs forceMove to NOT reset our trajectory to the new location!
var/ignore_source_check = FALSE

var/speed = 0.8 //Amount of deciseconds it takes for projectile to travel
var/speed = 0.55 //Amount of deciseconds it takes for projectile to travel
var/Angle = 0
var/original_angle = 0 //Angle at firing
var/nondirectional_sprite = FALSE //Set TRUE to prevent projectiles from having their sprites rotated based on firing angle
Expand Down

0 comments on commit f47f2e4

Please sign in to comment.