--- deliantra/server/ext/suicide.ext 2006/12/15 19:29:18 1.1 +++ deliantra/server/ext/suicide.ext 2008/04/30 06:40:28 1.2 @@ -6,7 +6,9 @@ my ($who, $args) = @_; $who->message ("You see no way to escape. Real heroes would rather starve to death than to give up, but you realise you are no hero.."); - $who->contr->killer ("foolery"); + my $killer = cf::arch::get "killer_suicide"; + $who->contr->killer ($killer); + $killer->destroy; $who->kill_player; };