BRUTAL Part 1 - No proc var/ in procs

This commit is contained in:
AffectedArc07
2021-02-01 14:10:08 +00:00
parent 1d89138436
commit f5f97882cf
533 changed files with 1558 additions and 1554 deletions
+1 -1
View File
@@ -177,7 +177,7 @@
SSevents.active_events -= src
SSevents.event_complete(src)
/datum/event/New(var/datum/event_meta/EM)
/datum/event/New(datum/event_meta/EM)
// event needs to be responsible for this, as stuff like APLUs currently make their own events for curious reasons
SSevents.active_events += src
+1 -1
View File
@@ -1,5 +1,5 @@
/client/proc/forceEvent(var/type in SSevents.allEvents)
/client/proc/forceEvent(type in SSevents.allEvents)
set name = "Trigger Event"
set category = "Debug"
+1 -1
View File
@@ -9,7 +9,7 @@
var/ionAnnounceChance = 33
announceWhen = 1
/datum/event/ion_storm/New(var/botEmagChance = 10, var/announceEvent = ION_NOANNOUNCEMENT, var/ionMessage = null, var/ionAnnounceChance = 33)
/datum/event/ion_storm/New(botEmagChance = 10, announceEvent = ION_NOANNOUNCEMENT, ionMessage = null, ionAnnounceChance = 33)
src.botEmagChance = botEmagChance
src.announceEvent = announceEvent
src.ionMessage = ionMessage
+1 -1
View File
@@ -42,7 +42,7 @@
greet_sentient(SA)
print_command_report(sentience_report, "[command_name()] Update", FALSE)
/datum/event/sentience/proc/greet_sentient(var/mob/living/carbon/human/M)
/datum/event/sentience/proc/greet_sentient(mob/living/carbon/human/M)
to_chat(M, "<span class='userdanger'>Hello world!</span>")
to_chat(M, "<span class='warning'>Due to freak radiation, you have gained \
human level intelligence and the ability to speak and understand \
+1 -1
View File
@@ -61,7 +61,7 @@ GLOBAL_LIST_INIT(unused_trade_stations, list("sol"))
else
GLOB.unused_trade_stations += station // Return the station to the list of usable stations.
/datum/event/traders/proc/greet_trader(var/mob/living/carbon/human/M)
/datum/event/traders/proc/greet_trader(mob/living/carbon/human/M)
to_chat(M, "<span class='boldnotice'>You are a trader!</span>")
to_chat(M, "<span class='notice'>You are currently docked at [get_area(M)].</span>")
to_chat(M, "<span class='notice'>You are about to trade with [station_name()].</span>")