mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
Gender Enum Refactor
This commit is contained in:
@@ -3358,7 +3358,7 @@ public class performance extends script.base_script
|
||||
}
|
||||
location myLoc = getLocation(actor);
|
||||
int species = getSpecies(actor);
|
||||
int gender = getGender(actor);
|
||||
Gender gender = getGender(actor);
|
||||
String template = "object/mobile/hologram/";
|
||||
String speciesString = "human";
|
||||
String genderString = "male";
|
||||
@@ -3392,7 +3392,7 @@ public class performance extends script.base_script
|
||||
speciesString = "sullustan";
|
||||
break;
|
||||
}
|
||||
if (gender == GENDER_FEMALE)
|
||||
if (gender == Gender.FEMALE)
|
||||
{
|
||||
genderString = "female";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user