Skip to content

Commit

Permalink
Increases weapon slowdown for heavier weapons (#10977)
Browse files Browse the repository at this point in the history
* Update gun.dm

* Removes KA slowdown
  • Loading branch information
PowerfulBacon authored Jun 4, 2024
1 parent 7a71e1a commit eb4fefd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/projectiles/gun.dm
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
spread_unwielded = weapon_weight * 10 + 10
if (has_weapon_slowdown)
if (!slowdown)
slowdown = 0.3 + weapon_weight * 0.1
slowdown = 0.1 + weapon_weight * 0.3
item_flags |= SLOWS_WHILE_IN_HAND
if(requires_wielding)
RegisterSignal(src, COMSIG_TWOHANDED_WIELD, PROC_REF(wield))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
can_bayonet = TRUE
knife_x_offset = 20
knife_y_offset = 12
has_weapon_slowdown = FALSE

var/max_mod_capacity = 100
var/list/modkits = list()
Expand Down

0 comments on commit eb4fefd

Please sign in to comment.