From 7059f030390047d9187eecf885d66e5d7b161e71 Mon Sep 17 00:00:00 2001 From: Jon Date: Sat, 15 Dec 2018 01:35:08 +0000 Subject: [PATCH 1/3] Removes the 0 from examining people. --- code/modules/mob/living/carbon/human/examine.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 49b415e2e6..7f8e9db4d4 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -294,7 +294,7 @@ msg += attempt_vr(src,"examine_bellies",args) //VOREStation Code msg += attempt_vr(src,"examine_pickup_size",args) //VOREStation Code msg += attempt_vr(src,"examine_step_size",args) //VOREStation Code - msg += attempt_vr(src,"examine_nif",args) //VOREStation Code +// msg += attempt_vr(src,"examine_nif",args) //VOREStation Code //removed due to removal of NIFs temporarily - Jon if(mSmallsize in mutations) msg += "[T.He] [T.is] very short!
" @@ -329,7 +329,7 @@ else if(disconnect_time) msg += "\[Disconnected/ghosted [round(((world.realtime - disconnect_time)/10)/60)] minutes ago\]\n" //VOREStation Add End - + var/list/wound_flavor_text = list() var/list/is_bleeding = list() var/applying_pressure = "" From e4a883c7ff4439465a8da705afa83fabc31ae323 Mon Sep 17 00:00:00 2001 From: Jon Date: Sat, 15 Dec 2018 01:35:25 +0000 Subject: [PATCH 2/3] Fixes the deletion of bellies when you click cancel...I hope? --- code/modules/vore/eating/vorepanel_vr.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index b7ee064846..cecb911552 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -713,8 +713,9 @@ selected.digestchance = sanitize_integer(digest_chance_input, 0, 100, initial(selected.digestchance)) if(href_list["b_del"]) - var/alert = alert("Are you sure you want to delete your [lowertext(selected.name)]?","Confirmation","Delete","Cancel") - if(!alert == "Delete") + + if(alert("Are you sure you want to delete your [lowertext(selected.name)]?","Confirmation","Delete","Cancel") == "Cancel") + user << "alert not Delete" return 0 var/failure_msg = "" From 65fda6af0265b6bf4402d91003089ff82f8a90dc Mon Sep 17 00:00:00 2001 From: Jon Date: Sat, 15 Dec 2018 01:42:00 +0000 Subject: [PATCH 3/3] Removed << messag --- code/modules/vore/eating/vorepanel_vr.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index cecb911552..aa49a9eec8 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -715,7 +715,6 @@ if(href_list["b_del"]) if(alert("Are you sure you want to delete your [lowertext(selected.name)]?","Confirmation","Delete","Cancel") == "Cancel") - user << "alert not Delete" return 0 var/failure_msg = ""