Implemented WorldThingSpawned hook. Also changed Console.Printf to automatically add \n. Also fixed vararg calls with names.

This commit is contained in:
ZZYZX 2017-01-30 09:10:33 +02:00
commit 83f868a049
6 changed files with 19 additions and 4 deletions

View file

@ -1338,7 +1338,7 @@ DEFINE_ACTION_FUNCTION(_Console, Printf)
{
PARAM_PROLOGUE;
FString s = FStringFormat(param, defaultparam, numparam, ret, numret);
Printf("%s", s);
Printf("%s\n", s);
return 0;
}