mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-04 14:33:58 +00:00
powder that makes you say yes
This commit is contained in:
@@ -73,15 +73,7 @@ var/datum/paiController/paiController // Global handler for pAI candidates
|
||||
if(t)
|
||||
candidate.name = t
|
||||
if("desc")
|
||||
<<<<<<< refs/remotes/Upstream/master
|
||||
t = tgui_input_text(usr, "Enter a description for your pAI", "pAI Description", candidate.description, multiline = TRUE)
|
||||
=======
|
||||
<<<<<<< HEAD
|
||||
t = input(usr, "Enter a description for your pAI", "pAI Description", candidate.description) as message
|
||||
=======
|
||||
t = tgui_input_text(usr, "Enter a description for your pAI", "pAI Description", candidate.description, multiline = TRUE, prevent_enter = TRUE)
|
||||
>>>>>>> 9f14866f07... Merge pull request #13135 from ItsSelis/tgui-input-framework-hotfix
|
||||
>>>>>>> Input Fixes
|
||||
if(t)
|
||||
candidate.description = sanitize(t)
|
||||
if("role")
|
||||
@@ -89,15 +81,7 @@ var/datum/paiController/paiController // Global handler for pAI candidates
|
||||
if(t)
|
||||
candidate.role = sanitize(t)
|
||||
if("ooc")
|
||||
<<<<<<< refs/remotes/Upstream/master
|
||||
t = tgui_input_text(usr, "Enter any OOC comments", "pAI OOC Comments", candidate.comments, multiline = TRUE)
|
||||
=======
|
||||
<<<<<<< HEAD
|
||||
t = input(usr, "Enter any OOC comments", "pAI OOC Comments", candidate.comments) as message
|
||||
=======
|
||||
t = tgui_input_text(usr, "Enter any OOC comments", "pAI OOC Comments", candidate.comments, multiline = TRUE, prevent_enter = TRUE)
|
||||
>>>>>>> 9f14866f07... Merge pull request #13135 from ItsSelis/tgui-input-framework-hotfix
|
||||
>>>>>>> Input Fixes
|
||||
if(t)
|
||||
candidate.comments = sanitize(t)
|
||||
if("save")
|
||||
|
||||
Reference in New Issue
Block a user