X-Git-Url: https://plomlompom.com/repos/test.html?a=blobdiff_plain;f=src%2Fserver%2Fthing_actions.c;h=dbf600c4666bdf76368287ea759a0d8245a816a8;hb=8d4de89107cf8e29c45c6375f4299b11d1d01d9a;hp=4889e5fea2cc5d221d53d006244dc2986d00a22d;hpb=2b2a1e0169b3a863fd87b679d789a4e2b789eb67;p=plomrogue diff --git a/src/server/thing_actions.c b/src/server/thing_actions.c index 4889e5f..dbf600c 100644 --- a/src/server/thing_actions.c +++ b/src/server/thing_actions.c @@ -48,9 +48,9 @@ static void playerbonus_use(uint8_t no_thing, uint8_t wrong_thing); static void update_log(char * text) { - send_to_outfile("LOG "); - send_to_outfile(text); - send_to_outfile("\n"); + send_to_outfile("LOG ", 0); + send_to_outfile(text, 0); + send_to_outfile("\n", 1); } @@ -183,7 +183,7 @@ static void playerbonus_use(uint8_t no_thing, uint8_t wrong_thing) update_log("You try to use this object, but fail."); return; } - update_log("You consume MAGIC MEAT."); + update_log("You consume this object."); }