summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/emap/horse.c2
-rw-r--r--src/emap/mail.c5
2 files changed, 5 insertions, 2 deletions
diff --git a/src/emap/horse.c b/src/emap/horse.c
index 90c736e..5fafad1 100644
--- a/src/emap/horse.c
+++ b/src/emap/horse.c
@@ -40,7 +40,7 @@ unsigned short horse_add_speed_bonus(TBL_PC *sd, unsigned short val)
if (!data || data->mount == 0)
return val;
- val -= 25;
+ //val -= 25; // [TMW2] No builtin bonus - Always by item script
}
return val;
}
diff --git a/src/emap/mail.c b/src/emap/mail.c
index 5d9e37c..afd8c64 100644
--- a/src/emap/mail.c
+++ b/src/emap/mail.c
@@ -30,12 +30,15 @@ bool email_invalid_operation_pre(struct map_session_data **sdPtr)
return true;
}
- if (!map->list[sd->bl.m].flag.town)
+ // [TMW2] Always report, no exceptions
+ //if (!map->list[sd->bl.m].flag.town)
{
ShowWarning("clif->parse_Mail: char '%s' trying to do invalid mail operations.\n", sd->status.name);
hookStop();
return true;
}
+
+ // FIXME: Thief mailman?
hookStop();
return false;
}