Scott Lilly

Results 43 issues of Scott Lilly

Add to (?) - Quests - Recipes - Locations - Monsters - Items (in the trade screen)

enhancement

RNGCryptoServiceProvider is being deprecated. Replace with new technique: ``` public static int GetNumberBetween(int minimumValue, int maximumValue) { // Need to add one to maximumValue, because otherwise, // this function will...

enhancement

The Z key will throw an exception if pressed in the absence of a monster, so I have slightly amended the code at line 250 – 253 of GameSession.cs to:...

bug

When loading a new game, the MessageBroker does not remove subscriptions from the previous GameSession object. Fix this, so we don't have this type of error coming up again.

bug

If you sell the pointy stick at another vendor before going back to turn in the quest you don’t get the error.

bug

When cloning GameItems, we need to also clone their Action objects, to prevent problems with event subscriptions. Change it to something like the below (adding in whatever is needed to...

Rapid clicking in trading screen causes items row order to switch

bug

Data is present in FICP file [Test.ficp.txt](https://github.com/ScottLilly/FluentInterfaceCreator/files/8923525/Test.ficp.txt)

enhancement

Should this allow spaces? Do I need to check that it doesn't start with a number? Other rules?

enhancement