Skip to content

Commit

Permalink
Pneumatic cannon capacity nerf.
Browse files Browse the repository at this point in the history
Improvised pneumatic cannon will now accept 8 w_class worth of items (8 tiny/4 small/ 2 normal)
Standard accepts 17. Because 17.
  • Loading branch information
octareenroon91 committed Oct 16, 2015
1 parent 44f3b3a commit 0731a3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/game/objects/items/weapons/pneumaticCannon.dm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
item_state = "bulldog"
lefthand_file = 'icons/mob/inhands/guns_lefthand.dmi'
righthand_file = 'icons/mob/inhands/guns_righthand.dmi'
var/maxWeightClass = 20 //The max weight of items that can fit into the cannon
var/maxWeightClass = 17 //The max weight of items that can fit into the cannon
var/loadedWeightClass = 0 //The weight of items currently in the cannon
var/obj/item/weapon/tank/internals/tank = null //The gas tank that is drawn from to fire things
var/gasPerThrow = 3 //How much gas is drawn from a tank's pressure to fire
Expand Down Expand Up @@ -104,7 +104,7 @@
desc = "A gas-powered, object-firing cannon made out of common parts."
force = 5
w_class = 3
maxWeightClass = 10
maxWeightClass = 8
gasPerThrow = 5

/datum/table_recipe/improvised_pneumatic_cannon //Pretty easy to obtain but
Expand Down

0 comments on commit 0731a3a

Please sign in to comment.