quick sirryan review

This commit is contained in:
Contrabang
2022-10-04 12:44:25 -04:00
parent e2ae891f3e
commit e9ec9cb518
2 changed files with 4 additions and 4 deletions
@@ -500,10 +500,10 @@
//General Griefsky
else if((istype(I, /obj/item/wrench)) && (build_step == 3))
else if(istype(I, /obj/item/wrench) && build_step == 3)
var/obj/item/griefsky_assembly/A = new /obj/item/griefsky_assembly(get_turf(src))
user.put_in_hands(A)
to_chat(user, "<span class='notice'>You adjust the arm slots for extra weapons!.</span>")
to_chat(user, "<span class='notice'>You adjust the arm slots for extra weapons!</span>")
user.unEquip(src, 1)
qdel(src)
+2 -2
View File
@@ -81,10 +81,10 @@
return
var/tmp_label = ""
var/label_text = sanitize(input(user, "Inscribe some text into \the [initial(BB.name)]","Inscription",tmp_label))
var/label_text = sanitize(input(user, "Inscribe some text into \the [initial(BB.name)]", "Inscription", tmp_label))
if(length(label_text) > 20)
to_chat(user, "<span class='warning''>The inscription can be at most 20 characters long.</span>")
to_chat(user, "<span class='warning'>The inscription can be at most 20 characters long.</span>")
return
if(label_text == "")