korrekte Argumente fuer init() und exit()
Change-Id: I104ce91bff7253973a4dbfbba903c7ad8f67e396
diff --git a/room/death/death_room.c b/room/death/death_room.c
index 5e59f20..1619e39 100644
--- a/room/death/death_room.c
+++ b/room/death/death_room.c
@@ -31,7 +31,8 @@
public int SmartLog( string creat, string myname, string str, string date );
public mixed hier_geblieben( mixed dest, int methods, string direction,
string textout, string textin );
-public void init()
+
+public varargs void init(object oldenv)
{
this_player()->move("/room/death/virtual/death_room_"+getuid(this_player()),
M_NOCHECK|M_SILENT|M_NO_SHOW);
diff --git a/room/death/death_room_vc.c b/room/death/death_room_vc.c
index 71038fb..e0e4986 100644
--- a/room/death/death_room_vc.c
+++ b/room/death/death_room_vc.c
@@ -57,7 +57,7 @@
return;
}
-public void exit(object liv)
+public varargs void exit(object liv, object dest)
{
call_out("test_remove",2);
return;
@@ -71,12 +71,12 @@
lambda( ({'x/*'*/}), ({#'destruct, 'x}) ) );
}
-public void init()
+public varargs void init(object oldenv)
{
string prayroom;
int res;
- ::init();
+ ::init(oldenv);
if ( !query_once_interactive(this_player()) ){
call_out( "deep_destruct", 0, this_player() );
return;