almost compiling

This commit is contained in:
silicons
2021-04-26 23:37:26 -07:00
parent 1585d1c2be
commit d547aa7ff1
4 changed files with 4 additions and 4 deletions

View File

@@ -25,7 +25,7 @@
var/dir
var/returned
#define RUN_YELL(_T, _P, _D) \
returned = max(powers[_T] - _T.get_yelling_resistance() - 1, 0); \
returned = max(_P - _T.get_yelling_resistance() - 1, 0); \
_T.maptext = "[returned]";
var/list/turf/edges_next = list()

View File

@@ -58,7 +58,7 @@
. = ..()
hit_thing(AM)
/obj/effect/decal/chempuff/proc/run(atom/target)
/obj/effect/decal/chempuff/proc/run_puff(atom/target)
set waitfor = FALSE
for(var/i in 1 to range)
range_left--

View File

@@ -86,7 +86,7 @@
reagents.trans_to(D, amount_per_transfer_from_this, 1/range)
D.color = mix_color_from_reagents(D.reagents.reagent_list)
last_spray = world.time
D.run(A)
D.run_puff(A)
/obj/item/reagent_containers/spray/attack_self(mob/user)
stream_mode = !stream_mode

View File

@@ -3111,7 +3111,6 @@
#include "code\modules\projectiles\guns\ballistic\automatic.dm"
#include "code\modules\projectiles\guns\ballistic\bow.dm"
#include "code\modules\projectiles\guns\ballistic\derringer.dm"
#include "code\modules\projectiles\guns\ballistic\laser_gatling.dm"
#include "code\modules\projectiles\guns\ballistic\launchers.dm"
#include "code\modules\projectiles\guns\ballistic\magweapon.dm"
#include "code\modules\projectiles\guns\ballistic\pistol.dm"
@@ -3122,6 +3121,7 @@
#include "code\modules\projectiles\guns\energy\energy_gun.dm"
#include "code\modules\projectiles\guns\energy\kinetic_accelerator.dm"
#include "code\modules\projectiles\guns\energy\laser.dm"
#include "code\modules\projectiles\guns\energy\laser_gatling.dm"
#include "code\modules\projectiles\guns\energy\megabuster.dm"
#include "code\modules\projectiles\guns\energy\mounted.dm"
#include "code\modules\projectiles\guns\energy\plasma_cit.dm"