Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/scr_arti_descr/scr_arti_descr.gml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function scr_arti_descr() {

if (has_tag("MINOR")){other_data+="It is more crude and utilitarian than one might expect from an artifact.";}
if (has_tag("chaos")){p4="It bears the taint of Chaos.";}
if (has_tag("daemonic")){p4="It is infested with a Daemonic entity.";}
if (has_tag("daemonic")){p4="It is infested with a Daemonic entity. Destroying it, may cause the entity to materialize.";}

final_description+=mission_data;
if (basic_asthetic!="") then final_description+=$" {basic_asthetic}";
Expand Down
2 changes: 1 addition & 1 deletion scripts/scr_ship_battle/scr_ship_battle.gml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function scr_ship_battle(target_ship_id, cooridor_width) {
}
}

if ((unit.role() == obj_ini.role[100][5]) || (unit.role() == obj_ini.role[100][11]) || (obj_ncombat.role[cooh, va] == obj_ini.role[100][7])) {
if ((unit.role() == obj_ini.role[100][5]) || (unit.role() == obj_ini.role[100][11]) || (unit.role() == obj_ini.role[100][7])) {
if (unit.role() == obj_ini.role[100][5]) {
obj_ncombat.captains += 1;
if (obj_ncombat.big_mofo > 5) {
Expand Down