From ecd16515c563e307c1f4f2af04e20eaf4046a8b8 Mon Sep 17 00:00:00 2001 From: Tad Hardesty Date: Thu, 31 May 2018 15:49:02 -0700 Subject: [PATCH] Remove datum/action/generic (#38201) --- code/datums/action.dm | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/code/datums/action.dm b/code/datums/action.dm index f9575a56ef..593e81ff01 100644 --- a/code/datums/action.dm +++ b/code/datums/action.dm @@ -564,19 +564,6 @@ /datum/action/innate/proc/Deactivate() return -//Preset for action that call specific procs (consider innate). -/datum/action/generic - check_flags = 0 - var/procname - -/datum/action/generic/Trigger() - if(!..()) - return 0 - if(target && procname) - call(target, procname)(usr) - return 1 - - //Preset for an action with a cooldown /datum/action/cooldown