Skip to content
Snippets Groups Projects
Commit c281b6e8 authored by James R.'s avatar James R.
Browse files

Give feedback on vote if it is not the same

parent 1ae41145
Branches
Tags
1 merge request!2lol xd
......@@ -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.");
}
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment