mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-25 21:19:00 +01:00
Various fixes for bans and mutations.
This commit is contained in:
@@ -114,7 +114,7 @@
|
||||
//equip_if_possible(obj/item/W, slot, del_on_fail = 1)
|
||||
/*
|
||||
if(istype(user, /mob/living/carbon))
|
||||
if(user:mutations & TK && get_dist(source, user) <= 7)
|
||||
if((TK in user:mutations) && get_dist(source, user) <= 7)
|
||||
if(user:equipped()) return 0
|
||||
var/X = source:x
|
||||
var/Y = source:y
|
||||
|
||||
@@ -96,7 +96,7 @@ NOTEBOOK
|
||||
set category = "Object"
|
||||
set src in usr
|
||||
|
||||
if ((usr.mutations & CLUMSY) && prob(50))
|
||||
if ((CLUMSY in usr.mutations) && prob(50))
|
||||
usr << text("\red You cut yourself on the paper.")
|
||||
return
|
||||
var/n_name = input(usr, "What would you like to label the paper?", "Paper Labelling", null) as text
|
||||
|
||||
Reference in New Issue
Block a user