Adding to the Authors file
This commit is contained in:
1
AUTHORS
1
AUTHORS
@@ -64,6 +64,7 @@ Also thanks to:
|
|||||||
* Raymond Martineau (mart0258)
|
* Raymond Martineau (mart0258)
|
||||||
* Reaperrr
|
* Reaperrr
|
||||||
* Riderr3
|
* Riderr3
|
||||||
|
* Rikhardur Bjarni Einarsson (WolfGaming)
|
||||||
* Sascha Biedermann (bidifx)
|
* Sascha Biedermann (bidifx)
|
||||||
* Sebastien Kerguen (xanax)
|
* Sebastien Kerguen (xanax)
|
||||||
* Simon Verbeke (Saticmotion)
|
* Simon Verbeke (Saticmotion)
|
||||||
|
|||||||
@@ -164,14 +164,12 @@ namespace OpenRA.Mods.RA
|
|||||||
|
|
||||||
public void PrerequisitesItemHidden(string key)
|
public void PrerequisitesItemHidden(string key)
|
||||||
{
|
{
|
||||||
var ps = Produceable[self.World.Map.Rules.Actors[key]];
|
Produceable[self.World.Map.Rules.Actors[key]].Visible = false;
|
||||||
ps.Visible = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void PrerequisitesItemVisable(string key)
|
public void PrerequisitesItemVisable(string key)
|
||||||
{
|
{
|
||||||
var ps = Produceable[self.World.Map.Rules.Actors[key]];
|
Produceable[self.World.Map.Rules.Actors[key]].Visible = true;
|
||||||
ps.Visible = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public ProductionItem CurrentItem()
|
public ProductionItem CurrentItem()
|
||||||
|
|||||||
Reference in New Issue
Block a user