fix for bug #1144:

the tooltip of the To: field of a message actuator was saying that
messages will only be sent to objects with a property of that name,
while in fact it was sent to objects with that name.

Unfortunately, the GameKit (and probably other documentation, too)
is wrong about this as well.

corrected the tooltip to reflect what's actually happening
This commit is contained in:
2004-04-15 15:15:20 +00:00
parent e2bed35011
commit d753f8a681

View File

@@ -2077,7 +2077,7 @@ static short draw_actuatorbuttons(bActuator *act, uiBlock *block, short xco, sho
uiDefBut(block, TEX, 1, "To: ",
(xco+10), (yco-(myline++*24)), (width-20), 19,
&ma->toPropName, 0, 31, 0, 0,
"Optional send message to objects with this property only"
"Optional send message to objects with this name only"
", or empty to broadcast");
#endif