Skip to content

Commit

Permalink
Чиним интенты (#338)
Browse files Browse the repository at this point in the history
ну типо ок
  • Loading branch information
Drakon341 committed Sep 24, 2023
1 parent 99a7a31 commit 6bdd113
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/mob_helpers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ It's fairly easy to fix if dealing with single letters but not so much with comp
return FALSE

//converts intent-strings into numbers and back
var/list/intents = list(I_HELP,I_DISARM,I_GRAB,I_HURT)
var/global/list/intents = list(I_HELP,I_DISARM,I_GRAB,I_HURT)
/proc/intent_numeric(argument)
if(istext(argument))
switch(argument)
Expand All @@ -399,7 +399,7 @@ var/list/intents = list(I_HELP,I_DISARM,I_GRAB,I_HURT)
else return I_HURT

//change a mob's act-intent. Input the intent as a string such as "help" or use "right"/"left
/mob/proc/a_intent_change(input)
/mob/verb/a_intent_change(input as text)
set name = "a-intent"
set hidden = 1

Expand Down
4 changes: 2 additions & 2 deletions maps/torch/job/corporate_jobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
)
outfit_type = /decl/hierarchy/outfit/job/torch/passenger/workplace_liaison
allowed_branches = list(/datum/mil_branch/civilian)
allowed_ranks = list( /datum/mil_rank/civ/second,
/datum/mil_rank/civ/first)
allowed_ranks = list(/datum/mil_rank/civ/second,
/datum/mil_rank/civ/first)
min_skill = list( SKILL_BUREAUCRACY = SKILL_EXPERT,
SKILL_FINANCE = SKILL_BASIC)

Expand Down
2 changes: 1 addition & 1 deletion maps/torch/torch_ranks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@
/datum/mil_rank/civ/exo_synth
name = "EXO Synthetic"
name_short = "Synth"
accessory = list(/obj/item/clothing/accessory/badge/solgov/synthetic)\
accessory = list(/obj/item/clothing/accessory/badge/solgov/synthetic)

/*
* EXO-PRX
Expand Down

0 comments on commit 6bdd113

Please sign in to comment.