This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
lwb5/scripts/game/beta5/library/leaveVacation.inc

23 lines
387 B
PHP

<?php
class beta5_leaveVacation {
function beta5_leaveVacation($lib) {
$this->lib = $lib;
$this->db = $this->lib->game->db;
}
// Called when a player leaves vacation mode
function run($player) {
if ($this->lib->game->params['novacation'] == 1) {
return;
}
$this->db->query("UPDATE planet SET vacation='NO' WHERE owner=$player");
// FIXME: Send messages
}
}
?>