/*
* this_player.c
*
* Set/get who the current player is
*
* (C) Frank Schmidt, Jesus@NorseMUD
*
*/
#ifdef MUDOS_THIS_PLAYER_1
static varargs object this_player(int i) {
return i ? GLOBAL->this_player1() : GLOBAL->this_player();
}
#else
static object this_player() {
return GLOBAL->this_player();
}
static object this_player1() {
return GLOBAL->this_player1();
}
#endif