mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 07:54:14 +00:00
* tgu * ok.. * they killed the fucking grab proc im not fixing this * fixes some map shit * huh * Merge remote-tracking branch 'tgstation/master' into tgu24 * this is weird af * idk what went on with this merge but ig its fixed * fixes windoors * this time for realsies passes * i promise now it does * fixes tgui + add boulder
19 lines
787 B
Plaintext
19 lines
787 B
Plaintext
|
|
//unmagic-strings for types of polls
|
|
#define POLLTYPE_OPTION "OPTION"
|
|
#define POLLTYPE_TEXT "TEXT"
|
|
#define POLLTYPE_RATING "NUMVAL"
|
|
#define POLLTYPE_MULTI "MULTICHOICE"
|
|
#define POLLTYPE_IRV "IRV"
|
|
|
|
///The message sent when you sign up to a poll.
|
|
#define POLL_RESPONSE_SIGNUP "signup"
|
|
///The message sent when you've already signed up for a poll and are trying to sign up again.
|
|
#define POLL_RESPONSE_ALREADY_SIGNED "already_signed"
|
|
///The message sent when you are not signed up for a poll.
|
|
#define POLL_RESPONSE_NOT_SIGNED "not_signed"
|
|
///The message sent when you are too late to unregister from a poll.
|
|
#define POLL_RESPONSE_TOO_LATE_TO_UNREGISTER "failed_unregister"
|
|
///The message sent when you successfully unregister from a poll.
|
|
#define POLL_RESPONSE_UNREGISTERED "unregistered"
|