summaryrefslogtreecommitdiff
path: root/src/emap/script_buildins.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emap/script_buildins.c')
-rw-r--r--src/emap/script_buildins.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/emap/script_buildins.c b/src/emap/script_buildins.c
index 2e47c77..3775814 100644
--- a/src/emap/script_buildins.c
+++ b/src/emap/script_buildins.c
@@ -241,7 +241,7 @@ BUILDIN(getItemLink)
if (data)
version = data->clientVersion;
- if (i_data && version >= 7)
+ if (i_data)
{
if (!script_hasdata(st, 3))
{
@@ -264,10 +264,6 @@ BUILDIN(getItemLink)
strcat(item_name, "|@@]");
}
}
- else if (i_data)
- {
- sprintf(item_name, "[@@%u|%s@@]", (unsigned)i_data->nameid, i_data->jname);
- }
else if (item_id > 0)
{
sprintf(item_name, "[@@%u|Unknown Item@@]", (unsigned)item_id);
@@ -1856,7 +1852,7 @@ BUILDIN(getInvIndexLink)
if (data)
version = data->clientVersion;
- if (i_data && version >= 7)
+ if (i_data)
{
const struct item *const item = &sd->status.inventory[index];
if (item->card[0] == CARD0_PET ||
@@ -1878,10 +1874,6 @@ BUILDIN(getInvIndexLink)
strcat(item_name, "|@@]");
}
}
- else if (i_data)
- {
- sprintf(item_name, "[@@%u|%s@@]", (unsigned)i_data->nameid, i_data->jname);
- }
else if (item_id > 0)
{
sprintf(item_name, "[@@%u|Unknown Item@@]", (unsigned)item_id);