Slightly buffs flushies. (#7279)

This commit is contained in:
Verkister
2023-11-26 22:11:24 +02:00
committed by GitHub
parent dc7101d320
commit 301dff573a
2 changed files with 5 additions and 4 deletions

View File

@@ -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