Skip to content

Commit

Permalink
Fix Space Explosions (#3188)
Browse files Browse the repository at this point in the history
Co-authored-by: UEDCommander <[email protected]>
  • Loading branch information
Lexanx and UEDCommander authored Jan 31, 2025
1 parent cef65d1 commit a261a94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion maps/sierra/job/jobs_command.dm
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@
// SIERRA TODO: need_exp_to_play
// need_exp_to_play = 2

/datum/job/iaa/get_description_blurb()
/datum/job/iso/get_description_blurb()
return "Оперативник Внутренней Безопасности, неофициально известный как Багровый Щит — сотрудник силовой ветви Департамента Внутренних Дел Центрального Командования NanoTrasen.\
На борту Сьерры он выступает в качестве телохранителя и правой руки Агента Внутренних Дел, действуя там, где слова и бумаги оказываются недостаточно эффективны."

Expand Down
4 changes: 2 additions & 2 deletions mods/explosions/code/explosion_iter.dm
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ SUBSYSTEM_DEF(explosives)
#define SEARCH_DIR(dir) \
search_direction = dir;\
search_turf = get_step(current_turf, search_direction);\
if (istype(search_turf, /turf/simulated)) {\
if (istype(search_turf, /turf)) {\
turf_queue += search_turf;\
dir_queue += search_direction;\
power_queue += current_power;\
Expand Down Expand Up @@ -276,7 +276,7 @@ SUBSYSTEM_DEF(explosives)
var/list/dir_queue = list(NORTH, SOUTH, EAST, WEST)
var/list/power_queue = list(power, power, power, power)

var/turf/simulated/current_turf
var/turf/current_turf
var/turf/search_turf
var/origin_direction
var/search_direction
Expand Down

0 comments on commit a261a94

Please sign in to comment.