lwb5-in-2025/game/scripts/lib/account.inc

14 lines
344 B
PHP
Raw Normal View History

2016-01-10 11:01:49 +01:00
<?php
/****************************************************************************
* ACCOUNT MANAGEMENT FUNCTIONS
****************************************************************************/
function accountLog($what, $uid) {
$game = config::getGame('main');
$lib = $game->getLib('main/account');
$lib->call('log', $uid, $what);
}
?>