16 lines
389 B
Text
16 lines
389 B
Text
/***********************************************************************
|
|
|
|
weapon_lacerator.script
|
|
|
|
***********************************************************************/
|
|
|
|
object weapon_lacerator_scope : weapon_assaultrifle_scope {
|
|
void preinit();
|
|
|
|
void Reload() { Overheat(); }
|
|
};
|
|
|
|
void weapon_lacerator_scope::preinit() {
|
|
usesStroyent = true;
|
|
hasHeat = true;
|
|
}
|