mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 11:05:03 +01:00
File standardisation (#13131)
* Adds the check components * Adds in trailing newlines * Converts all CRLF to LF * Post merge EOF * Post merge line endings * Final commit
This commit is contained in:
@@ -3,4 +3,4 @@
|
||||
if("4")
|
||||
a_intent_change(INTENT_HOTKEY_LEFT)
|
||||
return
|
||||
return ..()
|
||||
return ..()
|
||||
|
||||
@@ -18,4 +18,4 @@
|
||||
movement_dir &= ~(NORTH|SOUTH)
|
||||
if((movement_dir & EAST) && (movement_dir & WEST))
|
||||
movement_dir &= ~(EAST|WEST)
|
||||
user.Move(get_step(src, movement_dir), movement_dir)
|
||||
user.Move(get_step(src, movement_dir), movement_dir)
|
||||
|
||||
@@ -17,4 +17,4 @@
|
||||
if("4")
|
||||
a_intent_change("harm")
|
||||
return
|
||||
return ..()
|
||||
return ..()
|
||||
|
||||
@@ -99,4 +99,4 @@
|
||||
if(holder)
|
||||
holder.keyLoop(src)
|
||||
if(mob.focus)
|
||||
mob.focus.keyLoop(src)
|
||||
mob.focus.keyLoop(src)
|
||||
|
||||
@@ -77,4 +77,4 @@
|
||||
return
|
||||
stored.attack_hand(src) // take out thing from backpack
|
||||
return */
|
||||
return ..()
|
||||
return ..()
|
||||
|
||||
@@ -4,4 +4,4 @@
|
||||
resist()
|
||||
return
|
||||
|
||||
return ..()
|
||||
return ..()
|
||||
|
||||
@@ -142,4 +142,4 @@
|
||||
if("Alt")
|
||||
toggle_move_intent()
|
||||
return
|
||||
return ..()
|
||||
return ..()
|
||||
|
||||
@@ -17,4 +17,4 @@
|
||||
if(client.prefs.toggles & AZERTY)
|
||||
uneq_active()
|
||||
return
|
||||
return ..()
|
||||
return ..()
|
||||
|
||||
@@ -5,4 +5,4 @@
|
||||
if(focus == new_focus)
|
||||
return
|
||||
focus = new_focus
|
||||
reset_perspective(focus) //Maybe this should be done manually? You figure it out, reader
|
||||
reset_perspective(focus) //Maybe this should be done manually? You figure it out, reader
|
||||
|
||||
@@ -39,4 +39,4 @@ Notes about certain keys:
|
||||
|
||||
You cannot `TICK_CHECK` or check `world.tick_usage` inside of procs called by key down and up
|
||||
events. They happen outside of a byond tick and have no meaning there. Key looping
|
||||
works correctly since it's part of a subsystem, not direct input.
|
||||
works correctly since it's part of a subsystem, not direct input.
|
||||
|
||||
Reference in New Issue
Block a user