Skip to content

Commit

Permalink
[MIRROR] Removes generic_adjective sanity check (#748)
Browse files Browse the repository at this point in the history
* [MIRROR] Removes generic_adjective sanity check

* Update preferences.dm

Signed-off-by: MrCat15352 <[email protected]>

* Update preferences.dm

Signed-off-by: MrCat15352 <[email protected]>

---------

Signed-off-by: MrCat15352 <[email protected]>
Co-authored-by: Anticept <[email protected]>
Co-authored-by: MrCat15352 <[email protected]>
  • Loading branch information
3 people committed Jun 19, 2024
1 parent 679a338 commit 0757929
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions code/modules/client/preferences.dm
Original file line number Diff line number Diff line change
Expand Up @@ -942,15 +942,19 @@ GLOBAL_LIST_EMPTY(preferences_datums)

dat += "<a href='?_src_=prefs;preference=body_size;task=input'>[features["body_size"]]</a><BR>"

// begin generic adjective
if(!mutant_category)
dat += APPEARANCE_CATEGORY_COLUMN

dat += "<h3>Character Adjective</h3>"
dat += "<h3>Character Adjective</h3>"

dat += "<a href='?_src_=prefs;preference=generic_adjective;task=input'>[generic_adjective]</a><BR>"
dat += "<a href='?_src_=prefs;preference=generic_adjective;task=input'>[generic_adjective]</a><BR>"

mutant_category++
if(mutant_category >= MAX_MUTANT_ROWS)
dat += "</td>"
mutant_category = 0
mutant_category++
if(mutant_category >= MAX_MUTANT_ROWS)
dat += "</td>"
mutant_category = 0
// end generic adjective

if("wings" in pref_species.default_features && GLOB.r_wings_list.len >1)
if(!mutant_category)
Expand Down

0 comments on commit 0757929

Please sign in to comment.