Feature - Implemented When you can interact, do not allow Ode to be cast with a simple accordeon

slyz

Developer
When you can interact, and try to cast an Accordion Thief, Sauceror or Turtle Tamer buff, Mafia will try to retrieve an Epic Weaopn for you.

However, I was browsing through UseSkillRequest.java, and noticed this in prepareWeapon():
PHP:
// Allow ode to continue through to use a weaker weapon

if ( skillId != UseSkillRequest.ODE_TO_BOOZE )
{
	// Otherwise, obtain the Epic Weapon
	InventoryManager.retrieveItem( options[ 2 ] );
	return;
}
Since the number of adventures of Ode is now important when drinking, I think this should be changed to
PHP:
// Otherwise, obtain the Epic Weapon
InventoryManager.retrieveItem( options[ 2 ] );
return;
 

Attachments

  • CastOde.patch
    750 bytes · Views: 31

lostcalpolydude

Developer
Staff member
Given how old the thread is, changed from New Content to Feature request. Also bumping because it looks like a quick patch.
 
Top