* added spawns for vehicle accessories
 * display if npc is an accessory or has acceories
Home:
 * searching from home no longer adds index.php to the url

thought of the day: what do i do with spawns on transport-maps?
This commit is contained in:
Sarjuuk
2014-11-09 16:06:27 +01:00
parent 336f28b34f
commit edfb0be602
10 changed files with 494 additions and 4 deletions

View File

@@ -564,10 +564,10 @@ trait spawnHelper
$label = [];
if (User::isInGroup(U_GROUP_STAFF))
$label[] = 'GUID'.Lang::$main['colon'].$s['guid'];
$label[] = $s['guid'] < 0 ? 'Vehicle Accessory' : 'GUID'.Lang::$main['colon'].$s['guid'];
if ($_ = Util::formatTime($s['respawn'] * 1000, false))
$label[] = Lang::$npc['respawnIn'].Lang::$main['colon'].$_;
if ($s['respawn'])
$label[] = Lang::$npc['respawnIn'].Lang::$main['colon'].Util::formatTime($s['respawn'] * 1000, false);
if (User::isInGroup(U_GROUP_STAFF))
{