Page 1 of 1

BugID: 571 (John Adams) Self right-click

Posted: Mon Jan 02, 2012 1:37 pm
by John Adams
Bug ID: 571 - Self right-click
Bug Date: 2011-10-22 09:28:22
Priority: Medium

Originated From World: EQ2Emu DB Project (906)
Category: Interface
Sub-Category: User Interface
Causes a Crash: Cosmetic
Reproducible: Always Happens
Version: SOEBuild=7628L

Details:
When you target yourself and right-click your stats, you should not see all the options you would see if you clicked another player (duel, trade, add to friends, etc).
Spawn: Hanta (0), Zone: FrostFang Sea

Re: BugID: 571 (John Adams) Self right-click

Posted: Mon Jan 02, 2012 1:41 pm
by John Adams
Note to self:

This is in Player::Player(), commands are hard-coded --

Code: Select all

	AddSecondaryEntityCommand("Inspect", 10000, "inspect_player", "", 0, 0);
	AddSecondaryEntityCommand("Who", 10000, "who", "", 0, 0);

	//  commented out commands a player canNOT use on themselves... move these to Client::HandleVerbRequest()?
	//AddSecondaryEntityCommand("Assist", 10, "assist", "", 0, 0);
	//AddSecondaryEntityCommand("Duel", 10, "duel", "", 0, 0);
	//AddSecondaryEntityCommand("Duel Bet", 10, "duelbet", "", 0, 0);
	//AddSecondaryEntityCommand("Trade", 10, "trade", "", 0, 0);
Not sure how to handle these yet.