mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-29 11:32:13 +00:00
Attempt to fix mech and fighter movement issues within space. (#7376)
* Attempt to fix mech and fighter movement issues within space. Here is the issue in question: https://github.com/VOREStation/VOREStation/issues/8438 * Update Mecha.dm to fix #7376 request
This commit is contained in:
@@ -584,6 +584,15 @@
|
||||
last_message = world.time
|
||||
return 0
|
||||
|
||||
|
||||
/*
|
||||
//A first draft of a check to stop mechs from moving fully. TBD when all thrusters modules are unified.
|
||||
if(!thrusters && !src.pr_inertial_movement.active() && isspace(src.loc))//No thrsters, not drifting, in space
|
||||
src.occupant_message("Error 543")//debug
|
||||
return 0
|
||||
*/
|
||||
|
||||
|
||||
if(!thrusters && src.pr_inertial_movement.active()) //I think this mean 'if you try to move in space without thruster, u no move'
|
||||
return 0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user