2025-07-20 16:01 CEST

View Issue Details Jump to Notes ]
IDProjectCategoryView StatusLast Update
0004228Spring engineUnit Scriptingpublic2013-12-28 16:30
Reporterraaar 
Assigned ToKloot 
PrioritynormalSeverityminorReproducibilityalways
StatusresolvedResolutionfixed 
Product Version95.0.1+git 
Target VersionFixed in Version 
Summary0004228: hovering aircraft get "deactivated" mid air while not idle
Description- construction aircraft's "deactivate" script gets called many times while building something.
(they can seem to be "flapping" their wings as state changes between on and off while in the air)


tested on xta 9.731 with build 95.0.1-211-gcab0cae

it happens with gunships as well
Steps To Reproduce- spawn a construction aircraft and order it to build something
Additional Informationthis can be solved by adding a delay to the deactivation script and using a signal, for example (cob script):

#define SIG_ACTIVATION 8

Activate()
{
    signal SIG_ACTIVATION;
...
}

Deactivate()
{
    set-signal-mask SIG_ACTIVATION;
    sleep 2500;
...
}

but it wasn't necessary in the past, and shouldn't be (why would they deactivate mid-air when busy)
TagsNo tags attached.
Checked infolog.txt for Errors
Attached Files

-Relationships
+Relationships

-Notes
There are no notes attached to this issue.
+Notes

-Issue History
Date Modified Username Field Change
2013-12-28 04:09 raaar New Issue
2013-12-28 16:30 Kloot Changeset attached => spring release 6d9fcdce
2013-12-28 16:30 Kloot Assigned To => Kloot
2013-12-28 16:30 Kloot Status new => resolved
2013-12-28 16:30 Kloot Resolution open => fixed
+Issue History