diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2018-03-16 21:22:17 +0100 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2018-03-16 21:22:17 +0100 |
commit | c17c9c0f4d000a6765653a1168453a830e403117 (patch) | |
tree | 88aeddb142552d0952d2c19736fbf395c5910896 /src/game | |
parent | bf57f0b7a4c7093f7af54587d02d710b62a7da41 (diff) |
Use single quotes in G_LogAutobahn.
I had forgotten Tremulous didn't like printing double quotes.
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/g_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_client.c b/src/game/g_client.c index 8119e3b..a9fdb1f 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -1401,7 +1401,7 @@ void G_LogAutobahn(gentity_t *ent, const char *userinfo, int rating, ip, rating, name); if (g_adminAutobahnNotify.integer) - G_AdminsPrintf("Autobahn %s \"%s^7\" with rating %+i, connecting from %s.\n", + G_AdminsPrintf("Autobahn %s '%s^7' with rating %+i, connecting from %s.\n", verb, name, rating, ip); } |