Fix creating a poll where one can select multiple choices from a list.

This commit is contained in:
D3athrow
2023-12-26 16:33:52 -06:00
parent 259f439832
commit 37fe9d03a9

View File

@@ -6,7 +6,7 @@
if(!SSdbcore.Connect())
src << "<span class='danger'>Failed to establish database connection.</span>"
return
var/polltype = input("Choose poll type.","Poll Type") in list("Single Option","Text Reply","Rating","Multiple Choice")
var/polltype = input("Choose poll type.","Poll Type") in list("Single Option","Text Reply","Rating","Select All That Apply")
var/choice_amount = 0
switch(polltype)
if("Single Option")