mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Slightly buffs flushies. (#7279)
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
var/refill_cooldown = 200
|
||||
var/refilling = FALSE
|
||||
var/no_destination = TRUE
|
||||
var/max_w_class = 3 //glogged
|
||||
var/max_w_class = 5 //glogged
|
||||
var/total_w = 0
|
||||
var/panic_mult = 1
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
if(teleplumbed && exit_landmark)
|
||||
desc = "The BS-500, a bluespace rift-rotation-based waste disposal unit for small matter. This one seems remarkably clean."
|
||||
no_destination = FALSE
|
||||
max_w_class = 10
|
||||
max_w_class = 15
|
||||
return ..()
|
||||
|
||||
/obj/structure/toilet/attack_hand(mob/living/user as mob)
|
||||
@@ -52,7 +52,8 @@
|
||||
if(F.loc == loc)
|
||||
if(isitem(F))
|
||||
var/obj/item/I = F
|
||||
total_w += I.w_class
|
||||
if(I.w_class >= ITEMSIZE_NORMAL)
|
||||
total_w += I.w_class
|
||||
if(isliving(F))
|
||||
var/mob/living/L = F
|
||||
total_w += L.size_multiplier * 13
|
||||
|
||||
Reference in New Issue
Block a user