Skip to content

Commit

Permalink
Disabling AI and robot
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalFaceLesS committed Dec 28, 2024
1 parent 0fb77d5 commit c065f19
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions code/game/jobs/job/silicon.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
department_flag = MSC

total_positions = 0 // Not used for AI, see is_position_available below and modules/mob/living/silicon/ai/latejoin.dm
spawn_positions = 1
spawn_positions = 0
selection_color = "#3f823f"
supervisors = "your laws"
req_admin_notify = 1
Expand Down Expand Up @@ -40,16 +40,17 @@
return 1

/datum/job/ai/is_position_available()
return (empty_playable_ai_cores.len != 0)
// return (empty_playable_ai_cores.len != 0)
return FALSE // [CELADON-EDIT] - Отключаем возможность спавна AI.

/datum/job/ai/handle_variant_join(mob/living/carbon/human/H, alt_title)
return H

/datum/job/cyborg
title = "Robot"
department_flag = MSC
total_positions = 2
spawn_positions = 2
total_positions = 0
spawn_positions = 0
supervisors = "your laws and the AI"
selection_color = "#254c25"
minimal_player_age = 7
Expand Down

0 comments on commit c065f19

Please sign in to comment.