From 1e03fb9d72425494ec9ffb30d01e52c29e0d6595 Mon Sep 17 00:00:00 2001 From: SkyMarshal Date: Sat, 28 Jan 2012 15:55:00 -0700 Subject: [PATCH] bugfixes --- code/WorkInProgress/Ported/Abi79/uplinks.dm | 4 ++-- code/game/verbs/suicide.dm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/WorkInProgress/Ported/Abi79/uplinks.dm b/code/WorkInProgress/Ported/Abi79/uplinks.dm index 9102756ca4c..b7672b120ce 100644 --- a/code/WorkInProgress/Ported/Abi79/uplinks.dm +++ b/code/WorkInProgress/Ported/Abi79/uplinks.dm @@ -47,11 +47,11 @@ A list of items and costs is stored under the datum of every game mode, alongsid var/list/O = stringsplit(D, ":") if(O.len != 3) //If it is not an actual item, make a break in the menu. if(O.len == 1) //If there is one item, it's probably a title - if(category_items < 1) //If there were no itens in the last category... - src.menu_message += "We apologize, as you could not afford anything from this category.
" src.menu_message += "[O[1]]
" category_items = 0 else //Else, it's a white space. + if(category_items < 1) //If there were no itens in the last category... + src.menu_message += "We apologize, as you could not afford anything from this category.
" src.menu_message += "
" continue diff --git a/code/game/verbs/suicide.dm b/code/game/verbs/suicide.dm index 50036fbce9f..f040ac3fe2b 100644 --- a/code/game/verbs/suicide.dm +++ b/code/game/verbs/suicide.dm @@ -12,7 +12,7 @@ return if (mind.special_role != "Syndicate") - src << "No." + src << "No. Adminhelp if there is a legitimate reason." return if (suiciding)