mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-06 13:02:59 +00:00
11 lines
249 B
C++
11 lines
249 B
C++
//
|
|
// Created by dannu on 4/18/2026.
|
|
//
|
|
|
|
#include "links.h"
|
|
|
|
std::string Links::FormatSpellLink(uint32_t SpellID, const std::string& SpellName)
|
|
{
|
|
return fmt::format("{}63^{}^0^'{}{}", ITEM_TAG_CHAR, SpellID, SpellName.c_str(), ITEM_TAG_CHAR);
|
|
}
|