diff --git a/code/_onclick/drag_drop.dm b/code/_onclick/drag_drop.dm index 41ccfff56f6..dde65e877e9 100644 --- a/code/_onclick/drag_drop.dm +++ b/code/_onclick/drag_drop.dm @@ -25,8 +25,6 @@ /client/MouseDown(datum/object, location, control, params) - if(!control) - return if(QDELETED(object)) //Yep, you can click on qdeleted things before they have time to nullspace. Fun. return SEND_SIGNAL(src, COMSIG_CLIENT_MOUSEDOWN, object, location, control, params) @@ -44,8 +42,6 @@ active_mousedown_item.onMouseDown(object, location, params, mob) /client/MouseUp(object, location, control, params) - if(!control) - return if(SEND_SIGNAL(src, COMSIG_CLIENT_MOUSEUP, object, location, control, params) & COMPONENT_CLIENT_MOUSEUP_INTERCEPT) click_intercept_time = world.time if(mouse_up_icon) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index e2c52829380..86cfc3524e4 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -811,8 +811,6 @@ GLOBAL_LIST_INIT(blacklisted_builds, list( ip_intel = res.intel /client/Click(atom/object, atom/location, control, params) - if(!control) - return if(click_intercept_time) if(click_intercept_time >= world.time) click_intercept_time = 0 //Reset and return. Next click should work, but not this one.