Yes, you are right... I tested it now. Sorry
I found a solution but I am not sure if it the best way to do.
OPEN
sitemap.php
FIND
<url>
<loc>' . $server_url . '</loc>
<changefreq>always</changefreq>
<priority>1.0</priority>
</url>';
$xml_sitemap_body = '';
$xml_sitemap_footer = '
</urlset>';
REPLACE WITH
<url>
<loc>http://www.linktoyour.com/page.php</loc>
<changefreq>always</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>' . $server_url . '</loc>
<changefreq>always</changefreq>
<priority>1.0</priority>
</url>';
$xml_sitemap_body = '';
$xml_sitemap_footer = '
</urlset>';
Change this to the page you like:
http://www.linktoyour.com/page.php
I tested it and it is working.