mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-03 00:37:55 +00:00
Merge pull request #169 from Parabot/bugfix/random-types
[BUGFIX] Fixed a bug in RandomType
This commit is contained in:
@@ -6,9 +6,9 @@ package org.parabot.environment.randoms;
|
||||
public enum RandomType {
|
||||
|
||||
SCRIPT(0, "Script"),
|
||||
ON_SCRIPT_START(0, "On script start"),
|
||||
ON_SERVER_START(0, "On server start"),
|
||||
ON_SCRIPT_FINISH(0, "On script finish");
|
||||
ON_SCRIPT_START(1, "On script start"),
|
||||
ON_SERVER_START(2, "On server start"),
|
||||
ON_SCRIPT_FINISH(3, "On script finish");
|
||||
|
||||
private int id;
|
||||
private String name;
|
||||
|
||||
Reference in New Issue
Block a user