Merge pull request #6721 from phil235/CargoCrateNameFix

Many typo fixes
This commit is contained in:
tkdrg
2015-01-10 20:11:13 -03:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1455,7 +1455,7 @@ var/year_integer = text2num(year) // = 2013???
return
if (href_list["change_name"])
if(usr != src.occupant) return
var/newname = stripped_input(occupant,"Choose new exosuit name","Rename exosuit",initial(name), MAX_NAME_LEN)
var/newname = stripped_input(occupant,"Choose new exosuit name","Rename exosuit","", MAX_NAME_LEN)
if(newname && trim(newname))
name = newname
else
+1 -1
View File
@@ -169,7 +169,7 @@
/obj/item/areaeditor/proc/edit_area()
var/area/A = get_area()
var/prevname = "[A.name]"
var/str = trim(stripped_input(usr,"New area name:", "Blueprint Editing", prevname, MAX_NAME_LEN))
var/str = trim(stripped_input(usr,"New area name:", "Blueprint Editing", "", MAX_NAME_LEN))
if(!str || !length(str) || str==prevname) //cancel
return
if(length(str) > 50)
+1 -1
View File
@@ -87,7 +87,7 @@
//src.adjustFireLoss(shock_damage) //burn_skin will do this for us
//src.updatehealth()
src.visible_message(
"<span class='danger'>[src] was shocked by the [source]!</span>", \
"<span class='danger'>[src] was shocked by \the [source]!</span>", \
"<span class='userdanger'>You feel a powerful shock coursing through your body!</span>", \
"<span class='danger'>You hear a heavy electrical crack.</span>" \
)