Fix A_DropItem from merge

This commit is contained in:
Randy Heit 2013-08-21 22:31:40 -05:00
parent fd9c450c6e
commit 6198c000af

View file

@ -5213,10 +5213,11 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_SetDamageType)
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_DropItem) DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_DropItem)
{ {
ACTION_PARAM_START(3); PARAM_ACTION_PROLOGUE;
ACTION_PARAM_CLASS(spawntype, 0); PARAM_CLASS (spawntype, AActor);
ACTION_PARAM_INT(amount, 1); PARAM_INT_OPT (amount) { amount = -1; }
ACTION_PARAM_INT(chance, 2); PARAM_INT_OPT (chance) { chance = 256; }
P_DropItem(self, spawntype, amount, chance); P_DropItem(self, spawntype, amount, chance);
return 0;
} }