Skip to content

Commit

Permalink
Tweaks!
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorDinamit committed Oct 14, 2023
1 parent 8fb092b commit 53bec58
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions code/modules/spells/aimed/flamethrower.dm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

var/flame_power = 20
var/flame_distance = 4
var/flame_color = COLOR_RED_GRAY
var/flame_color = COLOR_ORANGE

/datum/spell/aimed/flamethrower/TargetCastCheck(mob/living/user, mob/living/target)
if(get_dist(user, target) > range)
Expand Down Expand Up @@ -48,7 +48,7 @@

/datum/spell/aimed/flamethrower/proc/PlaceFlame(turf/T)
T.IgniteTurf(flame_power, flame_color)
T.hotspot_expose((flame_power * 3) + 380, 500)
T.hotspot_expose((flame_power * 3) + 300, 50)

/datum/spell/aimed/flamethrower/empower_spell()
if(!..())
Expand Down
2 changes: 1 addition & 1 deletion code/modules/spells/aimed/water_slash.dm
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
var/turf/start_turf = get_turf(user)
var/turf/target_turf = get_ranged_target_turf_direct(start_turf, target, slash_distance)
/// The turf where the slash effect will visibly travel
var/turf/move_turf = target_turf
var/turf/move_turf = start_turf
var/list/attack_line = list()
for(var/turf/T in getline(start_turf, target_turf))
if(T == start_turf)
Expand Down

0 comments on commit 53bec58

Please sign in to comment.