mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-04 09:42:40 +02:00
34 lines
588 B
C++
34 lines
588 B
C++
/*
|
|
* RumorState.cpp, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
#include "StdInc.h"
|
|
#include "RumorState.h"
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
bool RumorState::update(int id, int extra)
|
|
{
|
|
if(vstd::contains(last, type))
|
|
{
|
|
if(last[type].first != id)
|
|
{
|
|
last[type].first = id;
|
|
last[type].second = extra;
|
|
}
|
|
else
|
|
return false;
|
|
}
|
|
else
|
|
last[type] = std::make_pair(id, extra);
|
|
|
|
return true;
|
|
}
|
|
|
|
VCMI_LIB_NAMESPACE_END
|