fixed nf_grp.cpp still for date

This commit is contained in:
SIELA1915 2016-01-31 21:04:41 +01:00
parent 1d60b878f9
commit 74e420958b

View file

@ -3369,10 +3369,10 @@ void getRyzomDateStr__s(CStateInstance* entity, CScriptStack& stack)
std::string year = toString(rt.getRyzomYearStr());
std::string eon = CI18N::get("uiEon").toUtf8();
result += NLMISC::toString(" / %s %s - %s - %s",
week,
dayName,
year,
eon);
week.c_str(),
dayName.c_str(),
year.c_str(),
eon.c_str());
stack.push( result );
}