diff --git a/src/d_vote.c b/src/d_vote.c index 810a77f7c002c8b5657045d40f58a11d4e51609d..c8f9746d0ffb90bf4bf4c8024c7373d1405220b0 100644 --- a/src/d_vote.c +++ b/src/d_vote.c @@ -229,6 +229,14 @@ D_Vote (int n, int from) Addvote(n, abs(n));/* add our new vote */ (*vote) = n;/* cache for later */ + + if (n != d) + { + if (n < 0) + D_Sayto(from, "You voted no."); + else + D_Sayto(from, "You voted yes."); + } } } }