Lohikar's bugfixes (#6364)

This commit is contained in:
Mykhailo Bykhovtsev
2019-05-05 23:06:48 +02:00
committed by Werner
parent edebe4c72f
commit 15640f0286
50 changed files with 124 additions and 72 deletions
+7 -7
View File
@@ -1332,7 +1332,7 @@ All custom items with worn sprites must follow the contained sprite system: http
set category = "Object"
set src in usr
if (use_check(usr)) return
if (use_check_and_message(usr)) return
var/style = input("You change the shirt to;","Change the shirt style") as null|anything in list("Eiffel Tower Diner","Pyramids of Giza Café","Phoenixport","New Parthenon")
switch(style)
@@ -1424,7 +1424,7 @@ All custom items with worn sprites must follow the contained sprite system: http
item_state = "syringe_kit"
/obj/item/fluff/jennifer_wardrobe_kit/attack_self(mob/user as mob)
if (use_check(user, USE_DISALLOW_SILICONS))
if (use_check_and_message(user, USE_DISALLOW_SILICONS))
return
var/list/outfits = list(
@@ -1574,7 +1574,7 @@ All custom items with worn sprites must follow the contained sprite system: http
set category = "Object"
set src in usr
if(use_check(usr)) return
if(use_check_and_message(usr)) return
if(src.separated)
return
@@ -1678,7 +1678,7 @@ All custom items with worn sprites must follow the contained sprite system: http
var/picture = null
/obj/item/fluff/raymond_tablet/attack_self(mob/user as mob)
if (use_check(user, USE_DISALLOW_SILICONS))
if (use_check_and_message(user, USE_DISALLOW_SILICONS))
return
var/list/pictures = list("22-01-2460", "07-11-2459", "03-08-2459", "08-03-2452", "18-06-2437", "01-01-2434")
@@ -2088,7 +2088,7 @@ All custom items with worn sprites must follow the contained sprite system: http
set category = "Object"
set src in usr
if (use_check(usr)) return
if (use_check_and_message(usr)) return
if(!lit)
usr.visible_message("<span class='notice'>With a snap of \the [usr]'s fingers, a small lighter flame sparks from \his index fingers!</span>")
@@ -2545,7 +2545,7 @@ All custom items with worn sprites must follow the contained sprite system: http
set category = "Object"
set src in usr
if (use_check(usr, USE_DISALLOW_SILICONS))
if (use_check_and_message(usr, USE_DISALLOW_SILICONS))
return
if(rolled_sleeves)
@@ -2566,7 +2566,7 @@ All custom items with worn sprites must follow the contained sprite system: http
set category = "Object"
set src in usr
if (use_check(usr, USE_DISALLOW_SILICONS))
if (use_check_and_message(usr, USE_DISALLOW_SILICONS))
return
if(rolled_down)