mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 21:12:24 +01:00
Lohikar's bugfixes (#6364)
This commit is contained in:
committed by
Werner
parent
edebe4c72f
commit
15640f0286
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user