mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-17 05:31:32 +00:00
Corrected all occurrences of the typo 'recieve'. (#5236)
I replaced all occurrences of the typo 'recieve' with the correct spelling 'receive'.
This commit is contained in:
@@ -101,7 +101,7 @@ var/list/DEPT_FREQS_ASSOC = list(
|
||||
//Other devices can then choose to send signals to only those devices that belong to a particular filter.
|
||||
//This is done for performance, so we don't send signals to lots of machines unnecessarily.
|
||||
|
||||
//This filter is special because devices belonging to default also recieve signals sent to any other filter.
|
||||
//This filter is special because devices belonging to default also receive signals sent to any other filter.
|
||||
#define RADIO_DEFAULT "radio_default"
|
||||
|
||||
#define RADIO_TO_AIRALARM "radio_airalarm" //air alarms
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
#define NO_BLOOD 1 // Vessel var is not filled with blood, cannot bleed out.
|
||||
#define NO_BREATHE 2 // Cannot suffocate or take oxygen loss.
|
||||
#define NO_SCAN 4 // Cannot be scanned in a DNA machine/genome-stolen.
|
||||
#define NO_PAIN 8 // Cannot suffer halloss/recieves deceptive health indicator.
|
||||
#define NO_PAIN 8 // Cannot suffer halloss/receives deceptive health indicator.
|
||||
#define NO_SLIP 16 // Cannot fall over.
|
||||
#define NO_POISON 32 // Cannot not suffer toxloss.
|
||||
#define IS_PLANT 64 // Is a treeperson.
|
||||
|
||||
@@ -13,6 +13,6 @@
|
||||
over.MouseDrop_T(src,usr)
|
||||
return
|
||||
|
||||
// recieve a mousedrop
|
||||
// receive a mousedrop
|
||||
/atom/proc/MouseDrop_T(atom/dropping, mob/user)
|
||||
return
|
||||
|
||||
@@ -972,7 +972,7 @@ proc/api_update_command_database()
|
||||
P.add_overlay(stampoverlay)
|
||||
P.stamps += "<HR><i>This paper has been stamped by the Central Command Quantum Relay.</i>"
|
||||
|
||||
if(F.recievefax(P))
|
||||
if(F.receivefax(P))
|
||||
log_and_message_admins("[senderkey] sent a fax message to the [F.department] fax machine via the api. (<A HREF='?_src_=holder;adminplayerobservecoodjump=1;X=[F.x];Y=[F.y];Z=[F.z]'>JMP</a>)")
|
||||
sent_faxes += P
|
||||
return 1
|
||||
|
||||
@@ -312,6 +312,6 @@
|
||||
/obj/machinery/door/airlock/proc/command(var/new_command)
|
||||
cur_command = new_command
|
||||
|
||||
//if there's no power, recieve the signal but just don't do anything. This allows airlocks to continue to work normally once power is restored
|
||||
//if there's no power, receive the signal but just don't do anything. This allows airlocks to continue to work normally once power is restored
|
||||
if(arePowerSystemsOn())
|
||||
INVOKE_ASYNC(src, .proc/execute_current_command)
|
||||
|
||||
@@ -69,7 +69,7 @@
|
||||
var/resend_counter = 0 //for periodically resending confirmation messages in case they are missed
|
||||
|
||||
var/override_enabled = 0 //when enabled, do not open/close doors or cycle airlocks and wait for the player to do it manually
|
||||
var/received_confirm = 0 //for undocking, whether the server has recieved a confirmation from the client
|
||||
var/received_confirm = 0 //for undocking, whether the server has received a confirmation from the client
|
||||
|
||||
/datum/computer/file/embedded_program/docking/New()
|
||||
..()
|
||||
|
||||
@@ -114,6 +114,6 @@
|
||||
var/drop_x = src.x-2
|
||||
var/drop_y = src.y-2
|
||||
var/drop_z = src.z
|
||||
command_announcement.Announce("Tau Ceti Rapid Fabrication priority supply request #[rand(1000,9999)]-[rand(100,999)] recieved. Shipment dispatched via ballistic supply pod for immediate delivery. Have a nice day.", "Thank You For Your Patronage")
|
||||
command_announcement.Announce("Tau Ceti Rapid Fabrication priority supply request #[rand(1000,9999)]-[rand(100,999)] received. Shipment dispatched via ballistic supply pod for immediate delivery. Have a nice day.", "Thank You For Your Patronage")
|
||||
spawn(rand(100,300))
|
||||
new /datum/random_map/droppod/supply(null, drop_x, drop_y, drop_z, supplied_drop = drop_type) // Splat.
|
||||
|
||||
@@ -290,7 +290,7 @@ var/global/list/default_medbay_channels = list(
|
||||
actually transmit large mass. Headsets are the only radio devices capable
|
||||
of sending subspace transmissions to the Communications Satellite.
|
||||
|
||||
A headset sends a signal to a subspace listener/reciever elsewhere in space,
|
||||
A headset sends a signal to a subspace listener/receiver elsewhere in space,
|
||||
the signal gets processed and logged, and an audible transmission gets sent
|
||||
to each individual headset.
|
||||
*/
|
||||
@@ -512,7 +512,7 @@ var/global/list/default_medbay_channels = list(
|
||||
return -1
|
||||
if (!on)
|
||||
return -1
|
||||
if (!freq) //recieved on main frequency
|
||||
if (!freq) //received on main frequency
|
||||
if (!listening)
|
||||
return -1
|
||||
else
|
||||
|
||||
@@ -1356,7 +1356,7 @@
|
||||
</ul><br>
|
||||
|
||||
<a name="Surgery"><h2>When You Alone Aren't Good Enough: Surgery and Drugs</h2><br></a>
|
||||
Sometimes the therapy available to you just doesn't cut it. Don't get angry! Ensure the patient recieves fair treatment, and prescribe appropriate action to your colleagues.
|
||||
Sometimes the therapy available to you just doesn't cut it. Don't get angry! Ensure the patient receives fair treatment, and prescribe appropriate action to your colleagues.
|
||||
<ul>
|
||||
<li>Surgery: Be advised, brain surgery is a complex and dangerous procedure and you should not prescribe unless drug therapy is simply not possible. Counsel the patient on the matter and send them down to the surgeon with a written report.</li><br>
|
||||
<li>Drug Therapy: A more reasonable and far safer option. Counsel the patient and fill out a prescription for the relevant chemical suppressant. Ensure that the patient and the chemist are both aware that these suppressants are temporary and require periodic re-administration.</li><br>
|
||||
|
||||
@@ -260,7 +260,7 @@
|
||||
if(!istype(S)) return 0
|
||||
|
||||
//I would prefer to drop a new stack, but the item/attack_hand code
|
||||
// that calls this can't recieve a different object than you clicked on.
|
||||
// that calls this can't receive a different object than you clicked on.
|
||||
//Therefore, make a new stack internally that has the remainder.
|
||||
// -Sayu
|
||||
|
||||
|
||||
@@ -46,14 +46,14 @@
|
||||
else src << "<font color='red'>Error: Private-Message: Client not found. They may have lost connection, so try using an adminhelp!</font>"
|
||||
return
|
||||
|
||||
var/recieve_pm_type = "Player"
|
||||
var/receive_pm_type = "Player"
|
||||
//mod PMs are maroon
|
||||
//PMs sent from admins and mods display their rank
|
||||
if(holder)
|
||||
if(!C.holder && holder.fakekey)
|
||||
recieve_pm_type = "Admin"
|
||||
receive_pm_type = "Admin"
|
||||
else
|
||||
recieve_pm_type = holder.rank
|
||||
receive_pm_type = holder.rank
|
||||
|
||||
else if(!C.holder)
|
||||
src << "<span class='warning'>Error: Admin-PM: Non-admin to non-admin PM communication is forbidden.</span>"
|
||||
@@ -105,12 +105,12 @@
|
||||
if(src.ckey != ticket.owner && !ticket.take(src))
|
||||
return
|
||||
|
||||
var/recieve_message
|
||||
var/receive_message
|
||||
|
||||
if(holder && !C.holder)
|
||||
recieve_message = "<span class='pm'><span class='howto'><b>-- Click the [recieve_pm_type]'s name to reply --</b></span></span>\n"
|
||||
receive_message = "<span class='pm'><span class='howto'><b>-- Click the [receive_pm_type]'s name to reply --</b></span></span>\n"
|
||||
if(C.adminhelped)
|
||||
C << recieve_message
|
||||
C << receive_message
|
||||
C.adminhelped = NOT_ADMINHELPED
|
||||
|
||||
//AdminPM popup for ApocStation and anybody else who wants to use it. Set it with POPUP_ADMIN_PM in config.txt ~Carn
|
||||
@@ -118,7 +118,7 @@
|
||||
spawn(0) //so we don't hold the caller proc up
|
||||
var/sender = src
|
||||
var/sendername = key
|
||||
var/reply = sanitize(input(C, msg,"[recieve_pm_type] PM from [sendername]", "") as text|null) //show message and await a reply
|
||||
var/reply = sanitize(input(C, msg,"[receive_pm_type] PM from [sendername]", "") as text|null) //show message and await a reply
|
||||
if(C && reply)
|
||||
if(sender)
|
||||
C.cmd_admin_pm(sender,reply) //sender is still about, let's reply to them
|
||||
@@ -135,7 +135,7 @@
|
||||
sender_message += "</span></span>"
|
||||
src << sender_message
|
||||
|
||||
var/receiver_message = "<span class='pm'><span class='in'>" + create_text_tag("pm_in", "", C) + " <b>\[[recieve_pm_type] PM\]</b> <span class='name'>[get_options_bar(src, C.holder ? 1 : 0, C.holder ? 1 : 0, 1)]</span>"
|
||||
var/receiver_message = "<span class='pm'><span class='in'>" + create_text_tag("pm_in", "", C) + " <b>\[[receive_pm_type] PM\]</b> <span class='name'>[get_options_bar(src, C.holder ? 1 : 0, C.holder ? 1 : 0, 1)]</span>"
|
||||
if(C.holder)
|
||||
receiver_message += " (<a href='?_src_=holder;take_ticket=\ref[ticket]'>[(ticket.status == TICKET_OPEN) ? "TAKE" : "JOIN"]</a>) (<a href='?src=\ref[usr];close_ticket=\ref[ticket]'>CLOSE</a>)"
|
||||
receiver_message += ": <span class='message'>[generate_ahelp_key_words(C.mob, msg)]</span>"
|
||||
|
||||
@@ -209,7 +209,7 @@ datum/battle_monsters/monster/human/warrior
|
||||
attack_mul = 0.25
|
||||
elements = BATTLE_MONSTERS_ELEMENT_FIRE
|
||||
description = "a skinny dark-scaled male %SPECIES bard warrior that prefers to rhyme than to attack with their %WEAPON_AND."
|
||||
special_effects = "Hotline Bling: All %ELEMENT_OR element monsters recieve an additional <b>200</b> attack points."
|
||||
special_effects = "Hotline Bling: All %ELEMENT_OR element monsters receive an additional <b>200</b> attack points."
|
||||
defense_type = BATTLE_MONSTERS_DEFENSETYPE_DRAGONHYBRID
|
||||
rarity = BATTLE_MONSTERS_RARITY_RARE
|
||||
rarity_score = 1
|
||||
|
||||
@@ -251,7 +251,7 @@
|
||||
P.add_overlay(stampoverlay)
|
||||
P.stamps += "<HR><i>This paper has been stamped by the Central Command Quantum Relay.</i>"
|
||||
|
||||
if(fax.recievefax(P))
|
||||
if(fax.receivefax(P))
|
||||
if(announce == 1)
|
||||
command_announcement.Announce("A fax has been sent to the [department] fax machine.", "Fax Sent")
|
||||
usr << "<span class='notice'>Message transmitted successfully.</span>"
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
/client/proc/toggleadminhelpsound()
|
||||
set name = "Hear/Silence Adminhelps"
|
||||
set category = "Preferences"
|
||||
set desc = "Toggle hearing a notification when admin PMs are recieved"
|
||||
set desc = "Toggle hearing a notification when admin PMs are received"
|
||||
if(!holder) return
|
||||
prefs.toggles ^= SOUND_ADMINHELP
|
||||
prefs.save_preferences()
|
||||
|
||||
@@ -248,7 +248,7 @@
|
||||
|
||||
/obj/item/clothing/accessory/medal/gold/heroism
|
||||
name = "medal of exceptional heroism"
|
||||
desc = "An extremely rare golden medal awarded only by company officials. To recieve such a medal is the highest honor and as such, very few exist. This medal is almost never awarded to anybody but commanders."
|
||||
desc = "An extremely rare golden medal awarded only by company officials. To receive such a medal is the highest honor and as such, very few exist. This medal is almost never awarded to anybody but commanders."
|
||||
icon_state = "gold_crest"
|
||||
|
||||
//clothing-like acessories
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
R.info += "<b>When first setting up your EFTPOS device:</b>"
|
||||
R.info += "1. Memorise your EFTPOS command code (provided with all EFTPOS devices).<br>"
|
||||
R.info += "2. Confirm that your EFTPOS device is connected to your local accounts database. For additional assistance with this step, contact NanoTrasen IT Support<br>"
|
||||
R.info += "3. Confirm that your EFTPOS device has been linked to the account that you wish to recieve funds for all transactions processed on this device.<br>"
|
||||
R.info += "3. Confirm that your EFTPOS device has been linked to the account that you wish to receive funds for all transactions processed on this device.<br>"
|
||||
R.info += "<b>When starting a new transaction with your EFTPOS device:</b>"
|
||||
R.info += "1. Ensure the device is UNLOCKED so that new data may be entered.<br>"
|
||||
R.info += "2. Enter a sum of money and reference message for the new transaction.<br>"
|
||||
|
||||
@@ -102,7 +102,7 @@
|
||||
"We are happy to inform you that due to the delay, we have been instructed to IMMEDIATELY deposit all funds into your account",\
|
||||
"Dear fund beneficiary, We have please to inform you that overdue funds payment has finally been approved and released for payment",\
|
||||
"Due to my lack of agents I require an off-world financial account to immediately deposit the sum of 1 POINT FIVE MILLION credits.",\
|
||||
"Greetings sir, I regretfully to inform you that as I lay dying here due to my lack ofheirs I have chosen you to recieve the full sum of my lifetime savings of 1.5 billion credits")
|
||||
"Greetings sir, I regretfully to inform you that as I lay dying here due to my lack ofheirs I have chosen you to receive the full sum of my lifetime savings of 1.5 billion credits")
|
||||
|
||||
if(6)
|
||||
var/pornography = pick("www.wetskrell.nt",\
|
||||
@@ -150,7 +150,7 @@
|
||||
"Hi [P.owner]! Remember me from high-school? Well I have this great business deal proposition....",\
|
||||
"If you don't forward this message to 8 more crewmembers your head will die in their sleep.",\
|
||||
"If you break the chain you will have bad luck for the rest of you're miserable life. Forward to 10 more crewmembers.",\
|
||||
"Forward this email to 3.14 more crewmembers and recieve 10,000 cR!",\
|
||||
"Forward this email to 3.14 more crewmembers and receive 10,000 cR!",\
|
||||
"[P.owner]! I come from the future to give warning! The code has become self-referential! Run while you still can!")
|
||||
|
||||
if (useMS.send_pda_message("[P.owner]", sender, message)) //Message been filtered by spam filter.
|
||||
|
||||
@@ -529,7 +529,7 @@ var/list/diona_banned_languages = list(
|
||||
var/restrictedlight_factor = 0.8 //A value between 0 and 1 that determines how much we nerf the strength of certain worn lights
|
||||
//1 means flashlights work normally., 0 means they do nothing
|
||||
|
||||
var/obj/item/organ/diona/node/light_organ = null //The organ this gestalt uses to recieve light. This is left null for nymphs
|
||||
var/obj/item/organ/diona/node/light_organ = null //The organ this gestalt uses to receive light. This is left null for nymphs
|
||||
var/obj/item/organ/diona/nutrients/nutrient_organ = null //Organ
|
||||
var/LMS = 1 //Lightmessage state. Switching between states gives the user a message
|
||||
var/dionatype //1 = nymph, 2 = worker gestalt
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
// proc to find out in how much pain the mob is at the moment
|
||||
/mob/living/carbon/proc/updateshock()
|
||||
if (species && (species.flags & NO_PAIN))
|
||||
src.traumatic_shock = src.halloss //Nopain species only recieve halloss from specific mechanics
|
||||
src.traumatic_shock = src.halloss //Nopain species only receive halloss from specific mechanics
|
||||
return src.traumatic_shock
|
||||
|
||||
src.traumatic_shock = \
|
||||
|
||||
@@ -365,7 +365,7 @@ nanoui is used to open and update nano browser uis
|
||||
<script type='text/javascript'>
|
||||
function receiveUpdateData(jsonString)
|
||||
{
|
||||
// We need both jQuery and NanoStateManager to be able to recieve data
|
||||
// We need both jQuery and NanoStateManager to be able to receive data
|
||||
// At the moment any data received before those libraries are loaded will be lost
|
||||
if (typeof NanoStateManager != 'undefined' && typeof jQuery != 'undefined')
|
||||
{
|
||||
|
||||
@@ -84,7 +84,7 @@
|
||||
else
|
||||
shuttle_status = "Standing-by at offsite location."
|
||||
if(WAIT_LAUNCH, FORCE_LAUNCH)
|
||||
shuttle_status = "Shuttle has recieved command and will depart shortly."
|
||||
shuttle_status = "Shuttle has received command and will depart shortly."
|
||||
if(WAIT_ARRIVE)
|
||||
shuttle_status = "Proceeding to destination."
|
||||
if(WAIT_FINISH)
|
||||
|
||||
@@ -192,7 +192,7 @@ var/list/admin_departments
|
||||
var/success = 0
|
||||
for(var/obj/machinery/photocopier/faxmachine/F in allfaxes)
|
||||
if( F.department == destination )
|
||||
success = F.recievefax(copyitem)
|
||||
success = F.receivefax(copyitem)
|
||||
|
||||
if (success)
|
||||
set_cooldown(normalfax_cooldown)
|
||||
@@ -205,7 +205,7 @@ var/list/admin_departments
|
||||
visible_message("[src] beeps, \"Error transmitting message.\"")
|
||||
return success
|
||||
|
||||
/obj/machinery/photocopier/faxmachine/proc/recievefax(var/obj/item/incoming)
|
||||
/obj/machinery/photocopier/faxmachine/proc/receivefax(var/obj/item/incoming)
|
||||
if(stat & (BROKEN|NOPOWER))
|
||||
return 0
|
||||
|
||||
|
||||
@@ -100,7 +100,7 @@
|
||||
src.set_dir(angle2dir(adir))
|
||||
return
|
||||
|
||||
//calculates the fraction of the sunlight that the panel recieves
|
||||
//calculates the fraction of the sunlight that the panel receives
|
||||
/obj/machinery/power/solar/proc/update_solar_exposure()
|
||||
if(!sun)
|
||||
return
|
||||
@@ -116,7 +116,7 @@
|
||||
return
|
||||
|
||||
sunfrac = cos(p_angle) ** 2
|
||||
//isn't the power recieved from the incoming light proportionnal to cos(p_angle) (Lambert's cosine law) rather than cos(p_angle)^2 ?
|
||||
//isn't the power received from the incoming light proportionnal to cos(p_angle) (Lambert's cosine law) rather than cos(p_angle)^2 ?
|
||||
|
||||
/obj/machinery/power/solar/machinery_process()//TODO: remove/add this from machines to save on processing as needed ~Carn PRIORITY
|
||||
if(stat & BROKEN)
|
||||
|
||||
@@ -232,7 +232,7 @@
|
||||
|
||||
/obj/item/weapon/gun/projectile/automatic/rifle/l6_saw
|
||||
name = "light machine gun"
|
||||
desc = "A rather traditionally made L6 SAW with a pleasantly lacquered wooden pistol grip. Has 'Aussec Armoury- 2431' engraved on the reciever"
|
||||
desc = "A rather traditionally made L6 SAW with a pleasantly lacquered wooden pistol grip. Has 'Aussec Armoury- 2431' engraved on the receiver"
|
||||
icon_state = "l6closed100"
|
||||
item_state = "l6closedmag"
|
||||
w_class = 4
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
else
|
||||
shuttle_status = "Standing-by at offsite location."
|
||||
if(WAIT_LAUNCH, FORCE_LAUNCH)
|
||||
shuttle_status = "Shuttle has recieved command and will depart shortly."
|
||||
shuttle_status = "Shuttle has received command and will depart shortly."
|
||||
if(WAIT_ARRIVE)
|
||||
shuttle_status = "Proceeding to destination."
|
||||
if(WAIT_FINISH)
|
||||
|
||||
@@ -191,7 +191,7 @@
|
||||
else
|
||||
shuttle_status = "Standing-by at [current_map.dock_name]."
|
||||
if(WAIT_LAUNCH, FORCE_LAUNCH)
|
||||
shuttle_status = "Shuttle has recieved command and will depart shortly."
|
||||
shuttle_status = "Shuttle has received command and will depart shortly."
|
||||
if(WAIT_ARRIVE)
|
||||
shuttle_status = "Proceeding to destination."
|
||||
if(WAIT_FINISH)
|
||||
|
||||
@@ -217,7 +217,7 @@
|
||||
var/choice = input("Select a destination.") as null|anything in MS.destinations
|
||||
if(!choice) return
|
||||
|
||||
usr << "<span class='notice'>[shuttle_tag] main computer recieved message.</span>"
|
||||
usr << "<span class='notice'>[shuttle_tag] main computer received message.</span>"
|
||||
|
||||
if(MS.at_origin)
|
||||
MS.announce_arrival()
|
||||
|
||||
@@ -277,7 +277,7 @@ GUEST_BAN
|
||||
##Remove the # mark infront of this to forbid admins from posssessing the singularity.
|
||||
#FORBID_SINGULO_POSSESSION
|
||||
|
||||
## Remove the # to show a popup 'reply to' window to every non-admin that recieves an adminPM.
|
||||
## Remove the # to show a popup 'reply to' window to every non-admin that receives an adminPM.
|
||||
## The intention is to make adminPMs more visible. (although I fnd popups annoying so this defaults to off)
|
||||
#POPUP_ADMIN_PM
|
||||
|
||||
|
||||
@@ -951,7 +951,7 @@
|
||||
<li class="balance">Diona nymphs can perform partial merges at half biomass, with the consequence of missing limbs. The more biomass, the less missing limbs.</li>
|
||||
<li class="rscadd">Added a mask and eyewear slot for dionaea.</li>
|
||||
<li class="tweak">Made Dionaea immune to the effects of blindfolds and muzzles.</li>
|
||||
<li class="balance">Dionaea recieve only 25% arousal per second from blindfolds and muzzles.</li>
|
||||
<li class="balance">Dionaea receive only 25% arousal per second from blindfolds and muzzles.</li>
|
||||
<li class="rscadd">Added several new preservatives and flavorings in vending machine junkfood. As a result, junkfood is now more filling.</li>
|
||||
<li class="tweak">Tweaked pain messages.</li>
|
||||
<li class="tweak">Penalties for Organ damage now start at >=1 instead of >0.</li>
|
||||
@@ -1007,7 +1007,7 @@
|
||||
</ul>
|
||||
<h3 class="author">kevinz000 updated:</h3>
|
||||
<ul class="changes bgimages16">
|
||||
<li class="rscadd">Projectiles have recieved a major overhaul into pixel projectiles processed by subsystem a la TG.</li>
|
||||
<li class="rscadd">Projectiles have received a major overhaul into pixel projectiles processed by subsystem a la TG.</li>
|
||||
</ul>
|
||||
|
||||
<h2 class="date">24 February 2018</h2>
|
||||
@@ -1693,7 +1693,7 @@
|
||||
<h3 class="author">Lohikar updated:</h3>
|
||||
<ul class="changes bgimages16">
|
||||
<li class="tweak">Progress bars will now stack instead of obscuring each other when you are doing multiple things at once.</li>
|
||||
<li class="bugfix">NanoTrasen Autodrobe(tm) units have recieved a firmware update and should no longer steal your clothes. NanoTrasen apologises for any inconveniences caused by showing up to your workplace in the nude.</li>
|
||||
<li class="bugfix">NanoTrasen Autodrobe(tm) units have received a firmware update and should no longer steal your clothes. NanoTrasen apologises for any inconveniences caused by showing up to your workplace in the nude.</li>
|
||||
<li class="bugfix">Fixed an issue where objects could not be seen in holes in some rare cases.</li>
|
||||
</ul>
|
||||
|
||||
@@ -4052,7 +4052,7 @@
|
||||
<li class="rscadd">Vaurca selection screen has a blurb + preview image.</li>
|
||||
<li class="rscadd">Added K'ois paste and fungi</li>
|
||||
<li class="rscadd">Phoron no longer poisons Vaurca nor damages their eyes.</li>
|
||||
<li class="rscadd">Vaurca will recieve toxin damage if they breathe oxygen with broken lungs.</li>
|
||||
<li class="rscadd">Vaurca will receive toxin damage if they breathe oxygen with broken lungs.</li>
|
||||
<li class="rscadd">Vaurca can no longer wear normal gloves or shoes.</li>
|
||||
<li class="rscdel">Vaurca can no longer gib lesser mobs via bite.</li>
|
||||
<li class="rscdel">Vaurca no longer have a slowness debuff.</li>
|
||||
|
||||
@@ -1895,7 +1895,7 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
|
||||
- rscadd: Vaurca selection screen has a blurb + preview image.
|
||||
- rscadd: Added K'ois paste and fungi
|
||||
- rscadd: Phoron no longer poisons Vaurca nor damages their eyes.
|
||||
- rscadd: Vaurca will recieve toxin damage if they breathe oxygen with broken lungs.
|
||||
- rscadd: Vaurca will receive toxin damage if they breathe oxygen with broken lungs.
|
||||
- rscadd: Vaurca can no longer wear normal gloves or shoes.
|
||||
- rscdel: Vaurca can no longer gib lesser mobs via bite.
|
||||
- rscdel: Vaurca no longer have a slowness debuff.
|
||||
@@ -4500,7 +4500,7 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
|
||||
Lohikar:
|
||||
- tweak: Progress bars will now stack instead of obscuring each other when you are
|
||||
doing multiple things at once.
|
||||
- bugfix: NanoTrasen Autodrobe(tm) units have recieved a firmware update and should
|
||||
- bugfix: NanoTrasen Autodrobe(tm) units have received a firmware update and should
|
||||
no longer steal your clothes. NanoTrasen apologises for any inconveniences caused
|
||||
by showing up to your workplace in the nude.
|
||||
- bugfix: Fixed an issue where objects could not be seen in holes in some rare cases.
|
||||
@@ -5172,7 +5172,7 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
|
||||
of missing limbs. The more biomass, the less missing limbs.
|
||||
- rscadd: Added a mask and eyewear slot for dionaea.
|
||||
- tweak: Made Dionaea immune to the effects of blindfolds and muzzles.
|
||||
- balance: Dionaea recieve only 25% arousal per second from blindfolds and muzzles.
|
||||
- balance: Dionaea receive only 25% arousal per second from blindfolds and muzzles.
|
||||
- rscadd: Added several new preservatives and flavorings in vending machine junkfood.
|
||||
As a result, junkfood is now more filling.
|
||||
- tweak: Tweaked pain messages.
|
||||
@@ -5232,7 +5232,7 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
|
||||
Skull132:
|
||||
- rscadd: 'Added the flag of the best nation: the Eridani Corporate Federation.'
|
||||
kevinz000:
|
||||
- rscadd: Projectiles have recieved a major overhaul into pixel projectiles processed
|
||||
- rscadd: Projectiles have received a major overhaul into pixel projectiles processed
|
||||
by subsystem a la TG.
|
||||
2018-03-13:
|
||||
BurgerBB:
|
||||
|
||||
37
html/changelogs/CodePanter-receive-typos.yml
Normal file
37
html/changelogs/CodePanter-receive-typos.yml
Normal file
@@ -0,0 +1,37 @@
|
||||
################################
|
||||
# Example Changelog File
|
||||
#
|
||||
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
|
||||
#
|
||||
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
|
||||
# When it is, any changes listed below will disappear.
|
||||
#
|
||||
# Valid Prefixes:
|
||||
# bugfix
|
||||
# wip (For works in progress)
|
||||
# tweak
|
||||
# soundadd
|
||||
# sounddel
|
||||
# rscadd (general adding of nice things)
|
||||
# rscdel (general deleting of nice things)
|
||||
# imageadd
|
||||
# imagedel
|
||||
# maptweak
|
||||
# spellcheck (typo fixes)
|
||||
# experiment
|
||||
# balance
|
||||
#################################
|
||||
|
||||
# Your name.
|
||||
author: CodePanter
|
||||
|
||||
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
|
||||
delete-after: True
|
||||
|
||||
# Any changes you've made. See valid prefix list above.
|
||||
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
|
||||
# SCREW THIS UP AND IT WON'T WORK.
|
||||
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
|
||||
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
|
||||
changes:
|
||||
- spellcheck: "Corrected all occurences of the typo 'recieve'."
|
||||
@@ -74,7 +74,7 @@ Used In File(s): \code\game\machinery\requests_console.dm
|
||||
{{for data.message_log}}
|
||||
<div class="item">{{:value}}</div>
|
||||
{{empty}}
|
||||
<div class="item">No messages have been recieved.</div>
|
||||
<div class="item">No messages have been received.</div>
|
||||
{{/for}}
|
||||
</div>
|
||||
<div class="item">{{:helper.link('Back', 'arrowreturnthick-1-w', { 'setScreen' : 0 })}}</div>
|
||||
|
||||
@@ -319,7 +319,7 @@ function export($addr, $port, $str) {
|
||||
$bytessent += $result;
|
||||
}
|
||||
|
||||
/* --- Idle for a while until recieved bytes from game server --- */
|
||||
/* --- Idle for a while until received bytes from game server --- */
|
||||
$result = socket_read($server, 10000, PHP_BINARY_READ);
|
||||
socket_close($server); // we don't need this anymore
|
||||
|
||||
|
||||
Reference in New Issue
Block a user