Skip to content

Commit

Permalink
Actually fix the throw log spacing properly
Browse files Browse the repository at this point in the history
  • Loading branch information
flappybatpal committed Dec 21, 2024
1 parent 1b23b44 commit f656bf6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/mob/living/carbon/human.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@
logTheThing(LOG_COMBAT, src, "throws [constructTarget(C,"combat")] [dir2text(throw_dir)] at [log_loc(src)].")
else
// Added log_reagents() call for drinking glasses. Also the location (Convair880).
logTheThing(LOG_COMBAT, src, "throws [I] [I.is_open_container() ? "[log_reagents(I)]" : ""] [dir2text(throw_dir)] at [log_loc(src)].")
logTheThing(LOG_COMBAT, src, "throws [I] [I.is_open_container() ? "[log_reagents(I)] " : ""][dir2text(throw_dir)] at [log_loc(src)].")
if (istype(src.loc, /turf/space) || src.no_gravity) //they're in space, move em one space in the opposite direction
src.inertia_dir = get_dir(target, src) // Float opposite direction from throw
step(src, inertia_dir)
Expand Down
2 changes: 1 addition & 1 deletion code/mob/living/critter.dm
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ ADMIN_INTERACT_PROCS(/mob/living/critter, proc/modify_health, proc/admincmd_atta
C.changeStatus("knockdown", 1 SECOND)
else
// Added log_reagents() call for drinking glasses. Also the location (Convair880).
logTheThing(LOG_COMBAT, src, "throws [I] [I.is_open_container() ? "[log_reagents(I)]" : ""][dir2text(throw_dir)] at [log_loc(src)].")
logTheThing(LOG_COMBAT, src, "throws [I] [I.is_open_container() ? "[log_reagents(I)] " : ""][dir2text(throw_dir)] at [log_loc(src)].")
if (istype(src.loc, /turf/space) || src.no_gravity) //they're in space, move em one space in the opposite direction
src.inertia_dir = get_dir(target, src) // Float opposite direction from throw
step(src, inertia_dir)
Expand Down

0 comments on commit f656bf6

Please sign in to comment.