Skip to content

Commit

Permalink
Merge pull request #3225 from Superlagg/the-weight-of-my-dick-is-drag…
Browse files Browse the repository at this point in the history
…ging-the-server-down

Performances UfoPornhud
  • Loading branch information
Tk420634 authored Oct 4, 2023
2 parents 05c3338 + efdb4e1 commit 9e9cadf
Show file tree
Hide file tree
Showing 21 changed files with 525 additions and 122 deletions.
13 changes: 13 additions & 0 deletions code/__DEFINES/mobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -621,3 +621,16 @@
#define TATTOO_VISIBILITY_RANGE 3

#define SIMPLEMOB_IGNORE 1

#define PHUD_NONE "GENITAL_HUD_NONE"
#define PHUD_BUTT "GENITAL_HUD_BUTT"
#define PHUD_BOOB "GENITAL_HUD_BREASTS"
#define PHUD_PENIS "GENITAL_HUD_PEEN"
#define PHUD_BALLS "GENITAL_HUD_BALLS"
#define PHUD_VAG "GENITAL_HUD_VAG"
#define PHUD_BELLY "GENITAL_HUD_BELLY"
#define PHUD_TAIL "GENITAL_HUD_TAIL"
#define PHUD_WINGS "GENITAL_HUD_WINGS"
#define PHUD_SHIRT "GENITAL_HUD_SHIRT"
#define PHUD_PANTS "GENITAL_HUD_PANTS"
#define PHUD_SOCKS "GENITAL_HUD_SOCKS"
2 changes: 1 addition & 1 deletion code/__HELPERS/text.dm
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
var/name = input(user, message, title, default) as message|null
if(isnull(name)) // Return null if canceled.
return null
if(!check_rights_for(user?.client, R_ADMIN) || i_will_sanitize_dont_worry)
if(!check_rights(R_ADMIN, FALSE) || i_will_sanitize_dont_worry)
name = strip_html_simple(name, max_length) // I'd prefer not to stab myself with a url
if(length(name) > max_length)
to_chat(user, name)
Expand Down
Loading

0 comments on commit 9e9cadf

Please sign in to comment.