PINK: fixed missing arguments

This commit is contained in:
whiterandrek 2018-03-23 11:58:57 +02:00 committed by Eugene Sandulenko
parent f29b0a8f35
commit 72dd7fae8b

View File

@ -34,7 +34,8 @@ void SupportingActor::deserialize(Archive &archive) {
}
void SupportingActor::toConsole() {
debug("SupportingActor: _name = %s, _location=%s, _pdaLink=%s, _cursor=%s", _name.c_str());
debug("SupportingActor: _name = %s, _location=%s, _pdaLink=%s, _cursor=%s",
_name.c_str(), _location.c_str(), _pdaLink.c_str(), _cursor.c_str());
for (int i = 0; i < _actions.size(); ++i) {
_actions[i]->toConsole();
}