Skip to content

Commit

Permalink
Added Beacon UUID to data pages.
Browse files Browse the repository at this point in the history
  • Loading branch information
thommcgrath committed Apr 8, 2024
1 parent a57661d commit 252e8e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Website/www/games/ark/blueprint.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@
}

$properties = [
'Mod' => '[' . $obj->ContentPackName() . '](/Games/Ark/Mods/' . urlencode($obj->ContentPackMarketplaceId()) . '/' . urlencode($objectGroup) . ')'
'Mod' => '[' . $obj->ContentPackName() . '](/Games/Ark/Mods/' . urlencode($obj->ContentPackMarketplaceId()) . '/' . urlencode($objectGroup) . ')',
'Beacon UUID' => $obj->ObjectId(),
];
$tags = $obj->Tags();
if (count($tags) > 0) {
Expand Down
3 changes: 2 additions & 1 deletion Website/www/games/arksa/blueprint.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@
}

$properties = [
'Mod' => '[' . $obj->ContentPackName() . '](/Games/ArkSA/Mods/' . urlencode($obj->ContentPackMarketplaceId()) . '/' . urlencode($objectGroup) . ')'
'Mod' => '[' . $obj->ContentPackName() . '](/Games/ArkSA/Mods/' . urlencode($obj->ContentPackMarketplaceId()) . '/' . urlencode($objectGroup) . ')',
'Beacon UUID' => $obj->ObjectId(),
];
$tags = $obj->Tags();
if (count($tags) > 0) {
Expand Down

0 comments on commit 252e8e5

Please sign in to comment.