From cef2cf4e6dc2ba391e80c1dfb5859c2066853913 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 25 Jan 2016 18:58:23 +0100 Subject: [PATCH] fixed parameter count for Sector_SetDamage. --- src/actionspecials.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actionspecials.h b/src/actionspecials.h index 752ef77eb..d1c72c1ad 100644 --- a/src/actionspecials.h +++ b/src/actionspecials.h @@ -193,7 +193,7 @@ DEFINE_SPECIAL(Transfer_FloorLight, 210, -1, -1, 1) DEFINE_SPECIAL(Transfer_CeilingLight, 211, -1, -1, 1) DEFINE_SPECIAL(Sector_SetColor, 212, 4, 5, 5) DEFINE_SPECIAL(Sector_SetFade, 213, 4, 4, 4) -DEFINE_SPECIAL(Sector_SetDamage, 214, 3, 3, 3) +DEFINE_SPECIAL(Sector_SetDamage, 214, 3, 5, 5) DEFINE_SPECIAL(Teleport_Line, 215, 2, 3, 3) DEFINE_SPECIAL(Sector_SetGravity, 216, 3, 3, 3) DEFINE_SPECIAL(Stairs_BuildUpDoom, 217, 5, 5, 5)