From 3a587e34dae47a8bffddc1f3dccf368e619dbc0c Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Tue, 5 May 2020 22:44:26 -0400 Subject: [PATCH] Fixes vore panel reload cancel Fixes https://github.com/VOREStation/VOREStation/issues/7665 --- code/modules/vore/eating/vorepanel_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index 3942b340ff..72575492ed 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -887,7 +887,7 @@ if(href_list["applyprefs"]) var/alert = alert("Are you sure you want to reload character slot preferences? This will remove your current vore organs and eject their contents.","Confirmation","Reload","Cancel") - if(!alert == "Reload") + if(alert != "Reload") return FALSE if(!user.apply_vore_prefs()) alert("ERROR: Virgo-specific preferences failed to apply!","Error")