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 year = toString(rt.getRyzomYearStr());
std::string eon = CI18N::get("uiEon").toUtf8(); std::string eon = CI18N::get("uiEon").toUtf8();
result += NLMISC::toString(" / %s %s - %s - %s", result += NLMISC::toString(" / %s %s - %s - %s",
week, week.c_str(),
dayName, dayName.c_str(),
year, year.c_str(),
eon); eon.c_str());
stack.push( result ); stack.push( result );
} }