Rename DonateSupplies activity to DonateCash

This commit is contained in:
reaperrr
2017-04-18 19:17:47 +02:00
parent 80ec530e4c
commit 9814083ac3
3 changed files with 4 additions and 4 deletions

View File

@@ -15,13 +15,13 @@ using OpenRA.Traits;
namespace OpenRA.Mods.Common.Activities
{
class DonateSupplies : Enter
class DonateCash : Enter
{
readonly Actor target;
readonly int payload;
readonly int experience;
public DonateSupplies(Actor self, Actor target, int payload, int playerExperience)
public DonateCash(Actor self, Actor target, int payload, int playerExperience)
: base(self, target, EnterBehaviour.Dispose)
{
this.target = target;