mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
Merge pull request #974 from noudess/master
Added a rule to disallow click training of tomes and fall back to handins.
This commit is contained in:
commit
a63dc7d5e0
@ -197,6 +197,7 @@ RULE_INT(Skills, SwimmingStartValue, 100, "")
|
||||
RULE_BOOL(Skills, TrainSenseHeading, false, "")
|
||||
RULE_INT(Skills, SenseHeadingStartValue, 200, "")
|
||||
RULE_BOOL(Skills, SelfLanguageLearning, true, "")
|
||||
RULE_BOOL(Skills, RequireTomeHandin, false, "Disable click-to-learn and force turnin to Guild Master")
|
||||
RULE_CATEGORY_END()
|
||||
|
||||
RULE_CATEGORY(Pets)
|
||||
|
||||
@ -8653,7 +8653,7 @@ void Client::Handle_OP_ItemVerifyRequest(const EQApplicationPacket *app)
|
||||
}
|
||||
else if (inst->IsClassCommon())
|
||||
{
|
||||
if (item->ItemType == EQEmu::item::ItemTypeSpell && (strstr((const char*)item->Name, "Tome of ") || strstr((const char*)item->Name, "Skill: ")))
|
||||
if (!RuleB(Skills, RequireTomeHandin) && item->ItemType == EQEmu::item::ItemTypeSpell && (strstr((const char*)item->Name, "Tome of ") || strstr((const char*)item->Name, "Skill: ")))
|
||||
{
|
||||
DeleteItemInInventory(slot_id, 1, true);
|
||||
TrainDiscipline(item->ID);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user