If wells provide clean water and bloody hands carry salmonella, where does the cholera come from?
Two diseases at once seem a disproportionate punishment.
I guess it's this:
```
class ActionDrinkWellContinuous
{
override void OnEndAnimationLoopServer( ActionData action_data )
{
if(action_data.m_Player.HasBloodyHands())
{
action_data.m_Player.InsertAgent(eAgents.**CHOLERA**, 1);
}
}
}
```